This updates the character_detail_block template to use the righ related
name for the recently Influence.initiator property.
{% 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>