* Let all the influences templates extend the base template.
[matthijs/projects/xerxes.git] / templates / influences / add.html
1 {% load i18n %}
2 {% extends "base/base.html" %}
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 %}