* Add a forgotten add_character template.
authorMatthijs Kooijman <matthijs@stdin.nl>
Wed, 23 Jan 2008 19:55:03 +0000 (20:55 +0100)
committerMatthijs Kooijman <matthijs@stdin.nl>
Wed, 23 Jan 2008 19:55:03 +0000 (20:55 +0100)
templates/influences/add_character.html [new file with mode: 0644]

diff --git a/templates/influences/add_character.html b/templates/influences/add_character.html
new file mode 100644 (file)
index 0000000..2691084
--- /dev/null
@@ -0,0 +1,13 @@
+{% load i18n %}
+<h2>{% trans "Add a character" %}</h2>
+{% if message %}
+{{ message }}
+{% endif %}
+{% if form %}
+<form method="POST">
+<table>
+{{ form.as_table }}
+</table>
+<input type="submit" value="{% trans "Add" %}"/>
+</form>
+{% endif %}