This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
2019-10-28 13:26:34 +00:00
|
|
|
"""passbook Event administration"""
|
2020-07-15 16:34:53 +00:00
|
|
|
from django.contrib.auth.mixins import LoginRequiredMixin
|
2018-12-14 09:28:37 +00:00
|
|
|
from django.views.generic import ListView
|
2019-10-10 11:01:49 +00:00
|
|
|
from guardian.mixins import PermissionListMixin
|
2018-12-14 09:28:37 +00:00
|
|
|
|
2020-09-25 23:51:42 +00:00
|
|
|
from passbook.admin.views.utils import UserPaginateListMixin
|
2019-10-28 13:26:34 +00:00
|
|
|
from passbook.audit.models import Event
|
2018-12-14 09:28:37 +00:00
|
|
|
|
|
|
|
|
2020-09-25 23:51:42 +00:00
|
|
|
class EventListView(
|
|
|
|
PermissionListMixin, LoginRequiredMixin, UserPaginateListMixin, ListView
|
|
|
|
):
|
2018-12-14 09:28:37 +00:00
|
|
|
"""Show list of all invitations"""
|
|
|
|
|
2019-10-28 13:26:34 +00:00
|
|
|
model = Event
|
2020-06-30 08:23:54 +00:00
|
|
|
template_name = "audit/list.html"
|
2019-12-31 11:51:16 +00:00
|
|
|
permission_required = "passbook_audit.view_event"
|
|
|
|
ordering = "-created"
|