Initial commit

This commit is contained in:
Gregory Soutade
2015-09-24 18:31:03 +02:00
commit 46082b8dcb
34 changed files with 4422 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
{% extends "base.html" %}
{% block content %}
<form action="/user/add" method="post">{% csrf_token %}
{{ form.as_p }}
<input type="submit" name="add" value="Add" />
<input type="submit" name="cancel" value="Cancel" />
</form>
{% endblock %}