Cosmetic changes
All checks were successful
buildbot/django-dav-events--test Build done.

This commit is contained in:
2023-02-27 15:20:08 +01:00
parent 3c53403d17
commit fb21a8721f
13 changed files with 132 additions and 31 deletions

View File

@@ -27,6 +27,10 @@ class RootView(generic.RedirectView):
return super().get(request, *args, **kwargs)
class HomeView(generic.TemplateView):
template_name = 'dav_registration/home.html'
class EventListView(generic.ListView):
model = Event
template_name = 'dav_registration/event_list.html'