Improve chat experience and begin search implementation
This commit is contained in:
@@ -1,15 +1,16 @@
|
||||
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 PersonaForm
|
||||
from core.models import Persona
|
||||
from core.views.osint import OSINTListBase
|
||||
from core.util import logs
|
||||
|
||||
log = logs.get_logger(__name__)
|
||||
|
||||
|
||||
class PersonaList(LoginRequiredMixin, ObjectList):
|
||||
list_template = "partials/persona-list.html"
|
||||
class PersonaList(LoginRequiredMixin, OSINTListBase):
|
||||
osint_scope = "personas"
|
||||
model = Persona
|
||||
page_title = "Personas"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user