* Only show the longterm in the email and detail template when it is set to yes.
authorMatthijs Kooijman <matthijs@stdio.flexvps.nl>
Sat, 9 Feb 2008 00:45:04 +0000 (01:45 +0100)
committerMatthijs Kooijman <matthijs@stdio.flexvps.nl>
Sat, 9 Feb 2008 00:45:04 +0000 (01:45 +0100)
templates/influences/email/influence_changed.html
templates/influences/influence_detail.html

index 29403015ed37152452f1fb9df548bf495520607f..3c563373e0d847d18da15b17a39fe8112e30e5e9 100644 (file)
@@ -28,7 +28,9 @@ You have submitted an influence on {{ creation_date }}.
 {% filter ljust:20%}{% trans "Contact" %}:{%endfilter%}{{ influence.contact }}
 {% filter ljust:20%}{% trans "Summary" %}:{%endfilter%}{{ influence.summary }}
 {% filter ljust:20%}{% trans "Status" %}:{%endfilter%}{{ influence.get_status_display }}
+{% if influence.longterm %}
 {% filter ljust:20%}{% trans "Long term" %}:{%endfilter%}{{ influence.longterm|yesno|capfirst }}
+{% endif %}
 {% trans "Description" %}:
 {% filter wordwrap:72 %}
 {{ influence.description }}
index 4060a272f7fb73e07a1d79e3daeae152276504f5..e3aaf82b3a4b6f9f685770e08f8505d2639c63e6 100644 (file)
@@ -7,6 +7,9 @@
 <table>
 <tr><td>{% trans "Contact" %}:</td><td>{{ object.contact }}</td></tr>
 <tr><td>{% trans "Character" %}:</td><td><a href="{% url influences_character_detail object.character.id %}">{{ object.character }}</a></td></tr>
+{% if object.longterm %}
+<tr><td>{% trans "Long term" %}:</td><td>{{ object.longterm|yesno|capfirst }}</td></tr>
+{% endif %}
 </table>
 <p>{{ object.description }}</p>
 {% endblock %}