Add update information to index page.
[matthijs/projects/xerxes.git] / templates / influences / index.html
1 {% extends "base/base.html" %}
2
3 {% load i18n %}
4
5 {% block content %}
6
7 {% block intro %}
8 <h1>{% trans "Xerxes update (2008.11.16)" %}</h1>
9 {% blocktrans %}
10 <p>Just in time to receive all the influences after Lextalionis VI, we've
11 updated Xerxes with a some new features and bugfixes. A lot of them are
12 behind the scenes, but what you will immediately notice is the option to
13 comment on your influences.</p>
14
15 <p>This commenting feature can be used by you to provide additional
16 information when needed, and by the SL's to ask extra questions and give
17 feedback.</p>
18
19 <p>You will automatically receive an email when any comments are posted
20 or the result of the influence is known, so there is no need to keep
21 checking back here.</p>
22 {% endblocktrans %}
23 {% if request.user.is_staff %}
24 <h2>{% trans "For SL's" %}</h2>
25 {% blocktrans %}
26 <p>When posting comments, you have an extra option: Making comments
27 private. By unchecking the "Is public" checkbox, a comment will be
28 private. This means it is visible to SL's only, and no notification will
29 be sent to the player either.</p>
30
31 <p>Also, there is now a Todo field on each influence, to be able to note
32 down todo points. There is no handy way for selecting all todo's in a
33 single page, but I'll add that if that would help.</p>
34 {% endblocktrans %}
35 {% endif %}
36 {% endblock %}
37
38 {% with characters as object_list %}
39 {% include "influences/character_list_block.html" %}
40 {% endwith %}
41
42 {% if characters %}
43 {% with influences as object_list %}
44 {% include "influences/influence_list_block.html" %}
45 {% endwith %}
46 {% endif %}
47
48 {% endblock %}