blob: b15f0e74b67db3eb09ec119466964ddc1d83511b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{% extends "base.html" %}
{% load i18n %}
{% block content %}
<div class='form'>
<form method="post" action=".">{% csrf_token %}
<table>
<caption>{% trans "Register" %}</caption>
{{ form.as_table }}
<tr><td colspan='2'><input type="submit" value="{% trans 'Submit' %}" /></td></tr>
</table>
</form>
</div>
{% endblock %}
|