X-Git-Url: https://git.stderr.nl/gitweb?a=blobdiff_plain;f=templates%2Finfluences%2Findex.html;h=5f53b5ecca4aab7e511db54dbf0ae6d0ac32ed27;hb=b8cf05be606731560d4519f2f705dafac8ca4b6a;hp=2cfb5a1a4a2b4a11e47f4935310fed5f03c48313;hpb=216e7e2abfa5096921c4022c65c89298d7b7a4f8;p=matthijs%2Fprojects%2Fxerxes.git diff --git a/templates/influences/index.html b/templates/influences/index.html index 2cfb5a1..5f53b5e 100644 --- a/templates/influences/index.html +++ b/templates/influences/index.html @@ -1,34 +1,48 @@ -{% load i18n %} {% extends "base/base.html" %} +{% load i18n %} + {% block content %} -

{% trans "Your characters"%}

-{% if characters %} - -{% else %} -

{% trans "No characters. Add a character first, so you can submit your influences." %}

-{% endif %} +{% block intro %} +

{% trans "Xerxes update (2008.11.16)" %}

+{% blocktrans %} +

Just in time to receive all the influences after Lextalionis VI, we've +updated Xerxes with a some new features and bugfixes. A lot of them are +behind the scenes, but what you will immediately notice is the option to +comment on your influences.

+ +

This commenting feature can be used by you to provide additional +information when needed, and by the SL's to ask extra questions and give +feedback.

-

{% trans "Add character" %}

- -

{% trans "Your influences" %}

-{% if influences %} - -{% else %} -

{% trans "No influences yet." %}

+

You will automatically receive an email when any comments are posted +or the result of the influence is known, so there is no need to keep +checking back here.

+{% endblocktrans %} +{% if request.user.is_staff %} +

{% trans "For SL's" %}

+{% blocktrans %} +

When posting comments, you have an extra option: Making comments +private. By unchecking the "Is public" checkbox, a comment will be +private. This means it is visible to SL's only, and no notification will +be sent to the player either.

+ +

Also, there is now a Todo field on each influence, to be able to note +down todo points. There is no handy way for selecting all todo's in a +single page, but I'll add that if that would help.

+{% endblocktrans %} {% endif %} +{% endblock %} + +{% with characters as object_list %} +{% include "influences/character_list_block.html" %} +{% endwith %} -

{% trans "Submit influence" %}

+{% if characters %} +{% with influences as object_list %} +{% include "influences/influence_list_block.html" %} +{% endwith %} +{% endif %} {% endblock %}