* Use h1/h2 instead of h2/h3 in the templates, since there probably won't be a main...
[matthijs/projects/xerxes.git] / templates / influences / add.html
index db277e916aa326f49d673410eadcf46df080ee1b..1a3bb01ba7ca75d9fb738fe5205116e48a02dadb 100644 (file)
@@ -1,9 +1,22 @@
+{% extends "base/base.html" %}
 {% load i18n %}
-<h2>{% trans "Submit influence" %}</h2>
-{% if message %}
-{{ message }}
-{% endif %}
+
+{% block content %}
+
+<h1>{% trans "Submit influence" %}</h1>
 {% if form %}
+<p>
+{% blocktrans %}You can submit an influence here. Use this form if your character wants
+to achieve something between events, such as gathering information
+through a contact, arranging for an ally to do a dirty job, etc. Please
+add a clear description of <em>what</em> your character wants to achieve
+and <em>how</em> he or she plans to achieve it.{% endblocktrans %}
+</p>
+<p>
+{% blocktrans %}After you have submitted the influence, you will receive
+a summary by email. When the SLs change something about the influence,
+or add a resolution, you will again be notified by email.{% endblocktrans %}
+</p>
 <form method="POST">
 <table>
 {{ form.as_table }}
@@ -11,3 +24,5 @@
 <input type="submit" value="{% trans "Submit" %}"/>
 </form>
 {% endif %}
+
+{% endblock %}