* Let all the influences templates extend the base template.
[matthijs/projects/xerxes.git] / templates / influences / character_detail.html
1 {% load i18n %}
2 {% extends "base/base.html" %}
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="../../add/{{ object.id }}">{% trans "Submit influence" %}</a>
15
16 {% endblock %}