* Put the extends tag in the first line of all templates, instead of after the load...
[matthijs/projects/xerxes.git] / templates / influences / add.html
1 {% extends "base/base.html" %}
2 {% load i18n %}
3
4 {% block content %}
5
6 <h2>{% trans "Submit influence" %}</h2>
7 {% if message %}
8 {{ message }}
9 {% endif %}
10 {% if form %}
11 <form method="POST">
12 <table>
13 {{ form.as_table }}
14 </table>
15 <input type="submit" value="{% trans "Submit" %}"/>
16 </form>
17 {% endif %}
18
19 {% endblock %}