2 <h1>{{ object.name }}</h1>
3 {% ifequal object.status "N" %}
4 <em>{% trans "This character was not yet approved by the SLs" %}</em>
6 <em>{% trans "This character is approved by the SLs" %}</em>
9 {% if object.initiated_influences.all or object.influences_involved_in.all %}
10 {% if object.initiated_influences.all %}
11 <h2>{% blocktrans with object.name as name %}Influences initiated by {{ name }}{% endblocktrans %}</h2>
13 {% for influence in object.initiated_influences.all %}
14 <li><a href="{% url influences_influence_detail influence.pk %}">{{ influence }}</a></li>
18 {% if object.influences_involved_in.all %}
19 <h2>{% blocktrans with object.name as name %}Influences {{ name }} is involved in{% endblocktrans %}</h2>
21 {% for influence in object.influences_involved_in.all %}
22 <li><a href="{% url influences_influence_detail influence.pk %}">{{ influence }}</a></li>
27 <p>{% trans "No influences yet." %}</p>
30 <a href="{% url influences_add_influence_for_character object.id %}">{% trans "Submit influence" %}</a>