Update template to use initiator.
authorMatthijs Kooijman <matthijs@stdin.nl>
Fri, 16 Jan 2009 21:41:27 +0000 (22:41 +0100)
committerMatthijs Kooijman <matthijs@stdin.nl>
Fri, 16 Jan 2009 21:41:27 +0000 (22:41 +0100)
This updates the character_detail_block template to use the righ related
name for the recently Influence.initiator property.

templates/influences/character_detail_block.html

index 6c0a67bbd151f67bd2c0f3bff2b955e955b21f7d..a206cf45fbc6e9eaec4b7d6a350ac95259d71607 100644 (file)
@@ -5,9 +5,10 @@
 {% else %}
 <em>{% trans "This character is approved by the SLs" %}</em>
 {% endifequal %}
-<h2>{% blocktrans with object.name as name %}Influences for {{ name }}{% endblocktrans %}</h2>
+
+<h2>{% blocktrans with object.name as name %}Influences initiated by {{ name }}{% endblocktrans %}</h2>
 <ul>
-{% for influence in object.influence_set.all %}
+{% for influence in object.initiated_influences.all %}
        <li><a href="{% url influences_influence_detail influence.pk %}">{{ influence }}</a></li>
 {% endfor %}
 </ul>