* Remove unused "message" from add character and add influence templates.
[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 form %}
8 <form method="POST">
9 <table>
10 {{ form.as_table }}
11 </table>
12 <input type="submit" value="{% trans "Submit" %}"/>
13 </form>
14 {% endif %}
15
16 {% endblock %}