mirror of
https://github.com/wallabag/wallabag.git
synced 2024-12-16 10:22:14 +01:00
fix display
This commit is contained in:
parent
3f3fbef11f
commit
47e12c3677
@ -3,25 +3,11 @@
|
|||||||
{% block title "Tags" %}
|
{% block title "Tags" %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
{% block pager %}
|
|
||||||
{% if tags is not empty %}
|
|
||||||
<div class="results">
|
|
||||||
<div class="nb-results">{{ tags.count }} {% trans %}tags{% endtrans %}</div>
|
|
||||||
<div class="pagination">
|
|
||||||
{% for p in range(1, tags.nbPages) %}
|
|
||||||
<li>
|
|
||||||
<a href="{{ path(app.request.attributes.get('_route'), {'page': p}) }}" class="{{ currentPage == p ? 'current':''}}" >{{ p }}</a>
|
|
||||||
</li>
|
|
||||||
{% endfor %}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
{% endif %}
|
|
||||||
{% endblock %}
|
|
||||||
|
|
||||||
{% if tags is empty %}
|
{% if tags is empty %}
|
||||||
<div class="messages warning"><p>{% trans %}No tags found.{% endtrans %}</p></div>
|
<div class="messages warning"><p>{% trans %}No tags found.{% endtrans %}</p></div>
|
||||||
{% else %}
|
{% else %}
|
||||||
{% for tag in tags %}{{tag.title}}
|
{% for tag in tags %}
|
||||||
|
{{tag.label}}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
Loading…
Reference in New Issue
Block a user