Mooooore status chips, mooore

This commit is contained in:
2020-08-24 13:43:03 +01:00
parent a6ac55baaf
commit da60cad911
7 changed files with 112 additions and 9 deletions

View File

@@ -135,3 +135,9 @@ class EventChecklistCreate(generic.CreateView):
def get_success_url(self):
return reverse_lazy('ec_detail', kwargs={'pk': self.object.pk})
class EventChecklistList(generic.ListView):
paginate_by = 20
model = models.EventChecklist
template_name = 'event_checklist_list.html'