WIP: Move to Jinja2

This commit is contained in:
Skia
2016-02-01 17:35:55 +01:00
parent abb8dc0c5e
commit 03bc0973fe
38 changed files with 261 additions and 217 deletions

View File

@ -0,0 +1,14 @@
{% extends "core/base.jinja" %}
{% block content %}
<h2>Edit user profile</h2>
<form action="" method="post">
{% csrf_token %}
{{ form.as_p() }}
<p><input type="submit" value="Update" /></p>
</form>
{% endblock %}