1a3bb01ba7ca75d9fb738fe5205116e48a02dadb
[matthijs/projects/xerxes.git] / templates / influences / add_influence.html
1 {% extends "base/base.html" %}
2 {% load i18n %}
3
4 {% block content %}
5
6 <h1>{% trans "Submit influence" %}</h1>
7 {% if form %}
8 <p>
9 {% blocktrans %}You can submit an influence here. Use this form if your character wants
10 to achieve something between events, such as gathering information
11 through a contact, arranging for an ally to do a dirty job, etc. Please
12 add a clear description of <em>what</em> your character wants to achieve
13 and <em>how</em> he or she plans to achieve it.{% endblocktrans %}
14 </p>
15 <p>
16 {% blocktrans %}After you have submitted the influence, you will receive
17 a summary by email. When the SLs change something about the influence,
18 or add a resolution, you will again be notified by email.{% endblocktrans %}
19 </p>
20 <form method="POST">
21 <table>
22 {{ form.as_table }}
23 </table>
24 <input type="submit" value="{% trans "Submit" %}"/>
25 </form>
26 {% endif %}
27
28 {% endblock %}