aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entries.html.twig
diff options
context:
space:
mode:
Diffstat (limited to 'src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entries.html.twig')
-rw-r--r--src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entries.html.twig7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entries.html.twig b/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entries.html.twig
index eca8924e..2a972e1c 100644
--- a/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entries.html.twig
+++ b/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entries.html.twig
@@ -9,10 +9,11 @@
9 {{ 'entry.page_titles.archived'|trans }} 9 {{ 'entry.page_titles.archived'|trans }}
10 {% elseif currentRoute == 'all' %} 10 {% elseif currentRoute == 'all' %}
11 {{ 'entry.page_titles.filtered'|trans }} 11 {{ 'entry.page_titles.filtered'|trans }}
12 {% elseif currentRoute == 'tag_entries' %}
13 {{ 'entry.page_titles.filtered_tags'|trans }}
12 {% else %} 14 {% else %}
13 {{ 'entry.page_titles.unread'|trans }} 15 {{ 'entry.page_titles.unread'|trans }}
14 {% endif %} 16 {% endif %}
15
16{% endblock %} 17{% endblock %}
17 18
18{% block content %} 19{% block content %}
@@ -122,6 +123,7 @@
122 </div> 123 </div>
123 124
124 <!-- Filters --> 125 <!-- Filters -->
126 {% if form is not null %}
125 <div id="filters" class="side-nav fixed right-aligned"> 127 <div id="filters" class="side-nav fixed right-aligned">
126 <form action="{{ path('all') }}"> 128 <form action="{{ path('all') }}">
127 129
@@ -205,5 +207,6 @@
205 207
206 </form> 208 </form>
207 </div> 209 </div>
208 {% include "WallabagCoreBundle:Entry:pager.html.twig" with {'entries': entries} %} 210 {% endif %}
211
209{% endblock %} 212{% endblock %}