From 9c349d82c60d06563e1c1fc52600179f702cebc2 Mon Sep 17 00:00:00 2001 From: Kyle Fuller Date: Mon, 14 May 2012 18:17:00 +0100 Subject: Use object.url to get the url for author, category and tags --- waterspill/templates/article.html | 4 ++-- waterspill/templates/base.html | 4 ++-- waterspill/templates/index.html | 6 +++--- 3 files changed, 7 insertions(+), 7 deletions(-) (limited to 'waterspill') diff --git a/waterspill/templates/article.html b/waterspill/templates/article.html index 975d441..baa42cf 100644 --- a/waterspill/templates/article.html +++ b/waterspill/templates/article.html @@ -11,9 +11,9 @@ {{ article.content }} {% include 'twitter.html' %} -

Par {{ article.author }}, Catégorie : {{ article.category }}

+

Par {{ article.author }}, Catégorie : {{ article.category }}

Tags : {% for tag in article.tags %} -{{ tag }} / +{{ tag }} / {% endfor %}

diff --git a/waterspill/templates/base.html b/waterspill/templates/base.html index 0ec8d25..1f9049d 100644 --- a/waterspill/templates/base.html +++ b/waterspill/templates/base.html @@ -53,7 +53,7 @@

Categories

{% if LINKS %} @@ -84,7 +84,7 @@

Tags

diff --git a/waterspill/templates/index.html b/waterspill/templates/index.html index bbc6a1f..d7bd1e3 100644 --- a/waterspill/templates/index.html +++ b/waterspill/templates/index.html @@ -13,9 +13,9 @@ {{ article.content }} -

Par {{ article.author }}, Catégorie : {{ article.category }}

+

Par {{ article.author }}, Catégorie : {{ article.category }}

Tags : {% for tag in article.tags %} -{{ tag }} / +{{ tag }} / {% endfor %}

@@ -31,7 +31,7 @@

Le {{ article.locale_date }}

{{ article.summary }} -

Par {{ article.author }}, Catégorie : {{ article.category }}

+

Par {{ article.author }}, Catégorie : {{ article.category }}

Lire la suite … -- cgit