Only allow users to add NPC or Player characters.
[matthijs/projects/xerxes.git] / templates / influences / add_character.html
1 {% extends "base/base.html" %}
2 {% load i18n %}
3
4 {% block content %}
5 <h1>{% trans "Add a character" %}</h1>
6 {% if form %}
7 <form method="POST">
8 <table>
9 {{ form.as_table }}
10 </table>
11 <input type="submit" value="{% trans "Add" %}"/>
12 </form>
13 {% endif %}
14 {% endblock %}