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

@@ -0,0 +1,16 @@
{% extends "core/base.jinja" %}
{% block content %}
<p><a href="{{ url('core:group_list') }}">Back to list</a></p>
<h2>Edit group</h2>
<form action="" method="post">
{% csrf_token %}
{{ form.as_p() }}
<p><input type="submit" value="Update" /></p>
</form>
{% endblock %}