* Put the extends tag in the first line of all templates, instead of after the load...
[matthijs/projects/xerxes.git] / templates / influences / character_detail.html
index 96e2c209f3903ce8300e5a2c29f944007726eb67..31279853ece8db5e417db1587797037e2e8437df 100644 (file)
@@ -1,4 +1,8 @@
+{% extends "base/base.html" %}
 {% load i18n %}
+
+{% block content %}
+
 <h2>{{ object.name }}</h2>
 <h3>{% blocktrans with object.name as name %}Influences for {{ name }}{% endblocktrans %}</h3>
 <ul>
@@ -7,4 +11,6 @@
 {% endfor %}
 </ul>
 
-<a href="/influences/character/{{ object.id }}/addinfluence">{% trans "Submit influence" %}</a>
+<a href="../../add/{{ object.id }}">{% trans "Submit influence" %}</a>
+
+{% endblock %}