* Let all the influences templates extend the base template.
[matthijs/projects/xerxes.git] / templates / influences / character_detail.html
index f6c1490270a7d255f2d5a4dc31c6026b8824f068..f5071c23b6532bf0d0a0b8ab03df094e280a528e 100644 (file)
@@ -1,4 +1,8 @@
 {% load i18n %}
+{% extends "base/base.html" %}
+
+{% block content %}
+
 <h2>{{ object.name }}</h2>
 <h3>{% blocktrans with object.name as name %}Influences for {{ name }}{% endblocktrans %}</h3>
 <ul>
@@ -8,3 +12,5 @@
 </ul>
 
 <a href="../../add/{{ object.id }}">{% trans "Submit influence" %}</a>
+
+{% endblock %}