Improve chat experience and begin search implementation
This commit is contained in:
@@ -1,18 +1,18 @@
|
||||
from django.contrib.auth.mixins import LoginRequiredMixin
|
||||
from mixins.views import ObjectCreate, ObjectDelete, ObjectList, ObjectUpdate
|
||||
from mixins.views import ObjectCreate, ObjectDelete, ObjectUpdate
|
||||
|
||||
from core.forms import PersonForm
|
||||
from core.models import Person
|
||||
from core.views.osint import OSINTListBase
|
||||
from core.util import logs
|
||||
|
||||
log = logs.get_logger(__name__)
|
||||
|
||||
|
||||
class PersonList(LoginRequiredMixin, ObjectList):
|
||||
list_template = "partials/person-list.html"
|
||||
class PersonList(LoginRequiredMixin, OSINTListBase):
|
||||
osint_scope = "people"
|
||||
model = Person
|
||||
page_title = "People"
|
||||
# page_subtitle = "Add times here in order to permit trading."
|
||||
|
||||
list_url_name = "people"
|
||||
list_url_args = ["type"]
|
||||
|
||||
Reference in New Issue
Block a user