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
---
sneakyidea/templates/article_infos.html | 4 ++--
sneakyidea/templates/base.html | 2 +-
sneakyidea/templates/comments.html | 2 +-
sneakyidea/templates/taglist.html | 2 +-
sneakyidea/templates/tags.html | 4 ++--
5 files changed, 7 insertions(+), 7 deletions(-)
(limited to 'sneakyidea')
diff --git a/sneakyidea/templates/article_infos.html b/sneakyidea/templates/article_infos.html
index b5af6c5..d7cb534 100644
--- a/sneakyidea/templates/article_infos.html
+++ b/sneakyidea/templates/article_infos.html
@@ -6,10 +6,10 @@
{% if article.author %}
- By {{ article.author }}
+ By {{ article.author }}
{% endif %}
-In {{ article.category }}. {% if PDF_PROCESSOR %}get the pdf{% endif %}
+In {{ article.category }}. {% if PDF_PROCESSOR %}get the pdf{% endif %}
{% include 'taglist.html' %}
{{ translations.translate(article) }}
diff --git a/sneakyidea/templates/base.html b/sneakyidea/templates/base.html
index a4a7564..a6cfb79 100644
--- a/sneakyidea/templates/base.html
+++ b/sneakyidea/templates/base.html
@@ -38,7 +38,7 @@
{% endfor %}
{% endif %}
{% for cat, null in categories %}
- {{ cat }}
+ {{ cat }}
{% endfor %}
{% for title, link in MENUITEMS %}
{{ title }}
diff --git a/sneakyidea/templates/comments.html b/sneakyidea/templates/comments.html
index ea693af..bb033c0 100644
--- a/sneakyidea/templates/comments.html
+++ b/sneakyidea/templates/comments.html
@@ -1 +1 @@
-{% if DISQUS_SITENAME %}There are comments.
{% endif %}
+{% if DISQUS_SITENAME %}There are comments.
{% endif %}
diff --git a/sneakyidea/templates/taglist.html b/sneakyidea/templates/taglist.html
index 4259077..7ed6bf1 100644
--- a/sneakyidea/templates/taglist.html
+++ b/sneakyidea/templates/taglist.html
@@ -1,2 +1,2 @@
-{% if article.tags %}tags: {% for tag in article.tags %}{{ tag }}{% endfor %}
{% endif %}
+{% if article.tags %}tags: {% for tag in article.tags %}{{ tag }}{% endfor %}
{% endif %}
{% if PDF_PROCESSOR %}get the pdf{% endif %}
diff --git a/sneakyidea/templates/tags.html b/sneakyidea/templates/tags.html
index bd18105..43bec00 100644
--- a/sneakyidea/templates/tags.html
+++ b/sneakyidea/templates/tags.html
@@ -5,8 +5,8 @@
Tags
--
cgit