* Use the Influence summary, where appropriate.
[matthijs/projects/xerxes.git] / templates / influences / character_detail.html
1 {% extends "base/base.html" %}
2 {% load i18n %}
3
4 {% block content %}
5
6 <h2>{{ object.name }}</h2>
7 <h3>{% blocktrans with object.name as name %}Influences for {{ name }}{% endblocktrans %}</h3>
8 <ul>
9 {% for influence in object.influence_set.objects.all %}
10         <li>{{ influence }}</li>
11 {% endfor %}
12 </ul>
13
14 <a href="{% url influences_add_influence_for_character object.id %}">{% trans "Submit influence" %}</a>
15
16 {% endblock %}