Finish the move to Jinja2

This commit is contained in:
Skia
2016-02-02 11:00:08 +01:00
parent 239133e355
commit afc87888a6
19 changed files with 46 additions and 75 deletions

View File

@ -10,11 +10,11 @@ class GroupListView(CanEditMixin, ListView):
Displays the group list
"""
model = Group
template_name = "core/group_list.html"
template_name = "core/group_list.jinja"
class GroupEditView(CanEditMixin, UpdateView):
model = Group
pk_url_kwarg = "group_id"
template_name = "core/group_edit.html"
template_name = "core/group_edit.jinja"
form_class = GroupEditForm