* Put a character's status in the email and detail templates.
authorMatthijs Kooijman <matthijs@stdio.flexvps.nl>
Sat, 9 Feb 2008 00:44:24 +0000 (01:44 +0100)
committerMatthijs Kooijman <matthijs@stdio.flexvps.nl>
Sat, 9 Feb 2008 00:44:24 +0000 (01:44 +0100)
templates/influences/character_detail.html
templates/influences/email/character_changed.html

index 164310c31524e3d88d6e71569cc249ff61af3367..bf6ac953f190d30fc5fd35eba39d03dd721dafc2 100644 (file)
@@ -4,6 +4,11 @@
 {% block content %}
 
 <h2>{{ object.name }}</h2>
+{% ifequal character.status "N" %}
+<em>{% trans "This character was not yet approved by the SLs" %}</em>
+{% else %}
+<em>{% trans "This character is approved by the SLs" %}</em>
+{% endifequal %}
 <h3>{% blocktrans with object.name as name %}Influences for {{ name }}{% endblocktrans %}</h3>
 <ul>
 {% for influence in object.influence_set.all %}
index 1e9ff101eb99f689aadcc6390577967ccd55c630..c858119ad3d1c9a04a4dfe478b3e4d6b5d7e8def 100644 (file)
@@ -27,5 +27,6 @@ You have created a character on {{ creation_date }}.
 {% endfilter %}
 \\
 {% filter ljust:20%}{% trans "Character name" %}:{%endfilter%}{{ character.name }}
+{% filter ljust:20%}{% trans "Status" %}:{%endfilter%}{{ character.get_status_display }}
 {% endautoescape %}
 {% endgapless %}