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 GroupForm
|
||||
from core.models import Group
|
||||
from core.views.osint import OSINTListBase
|
||||
from core.util import logs
|
||||
|
||||
log = logs.get_logger(__name__)
|
||||
|
||||
|
||||
class GroupList(LoginRequiredMixin, ObjectList):
|
||||
list_template = "partials/group-list.html"
|
||||
class GroupList(LoginRequiredMixin, OSINTListBase):
|
||||
osint_scope = "groups"
|
||||
model = Group
|
||||
page_title = "Groups"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user