From 0e70538637322474b001157d30dbb180acc49216 Mon Sep 17 00:00:00 2001 From: Matheus Figueiredo Date: Mon, 19 Aug 2013 17:02:40 -0300 Subject: [PATCH] Fixing filtered tag option --- src/planet/templates/feedzilla/tag.html | 25 ++++++++++++++----------- 1 file changed, 14 insertions(+), 11 deletions(-) diff --git a/src/planet/templates/feedzilla/tag.html b/src/planet/templates/feedzilla/tag.html index abce7f1..3cc3666 100644 --- a/src/planet/templates/feedzilla/tag.html +++ b/src/planet/templates/feedzilla/tag.html @@ -2,15 +2,18 @@ {% load i18n %} {% block feedzilla_content %} -

{% block title %}{% blocktrans %}Posts with «{{ tag }}» label{% endblocktrans %}{% endblock title %}

-
-{% if page.object_list %} - {% for post in page.object_list %} - {% include 'feedzilla/_post_template.html' %} -
- {% endfor %} - {% include "pagination.html" %} -{% else %} -

{% trans "No posts with such label" %}

-{% endif %} + +
+

{% block title %}{% blocktrans %}Posts with «{{ tag }}» label{% endblocktrans %}{% endblock title %}

+
+ {% if page.object_list %} + {% for post in page.object_list %} + {% include 'feedzilla/_post_template.html' %} +
+ {% endfor %} + {% include "pagination.html" %} + {% else %} +

{% trans "No posts with such label" %}

+ {% endif %} +
{% endblock %} -- libgit2 0.21.2