Add and link to /howto static page (no content yet).
[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 {% url influences_howto as howto_url %}
17 {% blocktrans %}Don't forget to <a href="{{ howto_url }}">read the
18 manual</a> for some hints and examples about when and how to create an
19 influence (and when it is <i>not</i> needed to do so).{% endblocktrans %}
20 </p>
21 <p>
22 {% blocktrans %}After you have submitted the influence, you will receive
23 a summary by email. When the SLs change something about the influence,
24 or add a resolution, you will again be notified by email.{% endblocktrans %}
25 </p>
26 <form method="POST">
27 <table>
28 {{ form.as_table }}
29 </table>
30 <input type="submit" value="{% trans "Submit" %}"/>
31 </form>
32 {% endif %}
33
34 {% endblock %}