* Add the forgotten influence_detail template.
authorMatthijs Kooijman <matthijs@stdin.nl>
Sun, 27 Jan 2008 15:56:09 +0000 (16:56 +0100)
committerMatthijs Kooijman <matthijs@stdin.nl>
Sun, 27 Jan 2008 15:56:09 +0000 (16:56 +0100)
 * Make the list of influences links to their detail pages.

templates/influences/index.html
templates/influences/influence_detail.html [new file with mode: 0644]

index 109901e9a7aff73811c8a2740be09cb9094d9c10..3a6b600a21fe89f8f198485e805704e65e78fe7f 100644 (file)
@@ -20,7 +20,7 @@
 {% if influences %}
        <ul>
        {% for influence in influences %}
-        <li>{{influence.contact }} -- {{ influence.summary }} </li>
+        <li><a href="{% url influences_influence_detail influence.id %}">{{influence.contact }} -- {{ influence.summary }}</a></li>
        {% endfor %}
        </ul>
 {% else %}
diff --git a/templates/influences/influence_detail.html b/templates/influences/influence_detail.html
new file mode 100644 (file)
index 0000000..60da6b2
--- /dev/null
@@ -0,0 +1,12 @@
+{% extends "base/base.html" %}
+{% load i18n %}
+
+{% block content %}
+
+<h2>{{ object.summary }}</h2>
+<table>
+<tr><td>{% trans "Contact" %}:</td><td>{{ object.contact }}</td></tr>
+<tr><td>{% trans "Character" %}</td><td>{{ object.character }}</td></tr>
+</table>
+<p>{{ object.description }}</p>
+{% endblock %}