* Use h1/h2 instead of h2/h3 in the templates, since there probably won't be a main...
[matthijs/projects/xerxes.git] / templates / influences / character_list.html
index 6673138cc4f2416b18492b86080ca548f07fe2c7..40e58611faadeab0560dd5ed2e66e01a9029d0ef 100644 (file)
@@ -1,5 +1,9 @@
+{% extends "base/base.html" %}
 {% load i18n %}
-<h2>{% trans "Your characters"%}</h2>
+
+{% block content %}
+
+<h1>{% trans "Your characters"%}</h1>
 {% if object_list %}
        <ul>
        {% for character in object_list %}
@@ -11,3 +15,5 @@
 {% endif %}
 
 <p><a href="character/add">{% trans "Add character" %}</a></p>
+
+{% endblock %}