mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-14 10:13:21 +00:00
21 lines
523 B
Python
21 lines
523 B
Python
from django.views.generic.edit import UpdateView
|
|
from django.views.generic import ListView
|
|
|
|
from core.models import Group
|
|
from core.views.forms import GroupEditForm
|
|
from core.views import CanEditMixin
|
|
|
|
class GroupListView(CanEditMixin, ListView):
|
|
"""
|
|
Displays the group list
|
|
"""
|
|
model = Group
|
|
template_name = "core/group_list.html"
|
|
|
|
class GroupEditView(CanEditMixin, UpdateView):
|
|
model = Group
|
|
pk_url_kwarg = "group_id"
|
|
template_name = "core/group_edit.html"
|
|
form_class = GroupEditForm
|
|
|