Commit 0e70538637322474b001157d30dbb180acc49216
1 parent
24a7926d
Exists in
master
and in
39 other branches
Fixing filtered tag option
Showing
1 changed file
with
14 additions
and
11 deletions
Show diff stats
src/planet/templates/feedzilla/tag.html
... | ... | @@ -2,15 +2,18 @@ |
2 | 2 | {% load i18n %} |
3 | 3 | |
4 | 4 | {% block feedzilla_content %} |
5 | -<h3>{% block title %}{% blocktrans %}Posts with «{{ tag }}» label{% endblocktrans %}{% endblock title %}</h3> | |
6 | -<hr> | |
7 | -{% if page.object_list %} | |
8 | - {% for post in page.object_list %} | |
9 | - {% include 'feedzilla/_post_template.html' %} | |
10 | - <hr> | |
11 | - {% endfor %} | |
12 | - {% include "pagination.html" %} | |
13 | -{% else %} | |
14 | - <p>{% trans "No posts with such label" %}</p> | |
15 | -{% endif %} | |
5 | + | |
6 | +<div class="col-lg-9"> | |
7 | + <h3>{% block title %}{% blocktrans %}Posts with «{{ tag }}» label{% endblocktrans %}{% endblock title %}</h3> | |
8 | + <hr> | |
9 | + {% if page.object_list %} | |
10 | + {% for post in page.object_list %} | |
11 | + {% include 'feedzilla/_post_template.html' %} | |
12 | + <hr> | |
13 | + {% endfor %} | |
14 | + {% include "pagination.html" %} | |
15 | + {% else %} | |
16 | + <p>{% trans "No posts with such label" %}</p> | |
17 | + {% endif %} | |
18 | +</div> | |
16 | 19 | {% endblock %} | ... | ... |