From 963e2c8978035dc3f992583145b65c1d57d25ca2 Mon Sep 17 00:00:00 2001 From: Matthijs Kooijman Date: Sun, 27 Jan 2008 16:56:09 +0100 Subject: [PATCH] * Add the forgotten influence_detail template. * Make the list of influences links to their detail pages. --- templates/influences/index.html | 2 +- templates/influences/influence_detail.html | 12 ++++++++++++ 2 files changed, 13 insertions(+), 1 deletion(-) create mode 100644 templates/influences/influence_detail.html diff --git a/templates/influences/index.html b/templates/influences/index.html index 109901e..3a6b600 100644 --- a/templates/influences/index.html +++ b/templates/influences/index.html @@ -20,7 +20,7 @@ {% if influences %} {% else %} diff --git a/templates/influences/influence_detail.html b/templates/influences/influence_detail.html new file mode 100644 index 0000000..60da6b2 --- /dev/null +++ b/templates/influences/influence_detail.html @@ -0,0 +1,12 @@ +{% extends "base/base.html" %} +{% load i18n %} + +{% block content %} + +

{{ object.summary }}

+ + + +
{% trans "Contact" %}:{{ object.contact }}
{% trans "Character" %}{{ object.character }}
+

{{ object.description }}

+{% endblock %} -- 2.30.2