aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entries.html.twig
diff options
context:
space:
mode:
authorDaniel Bartram <me@danielbartram.com>2016-05-09 14:19:09 +0100
committerDaniel Bartram <me@danielbartram.com>2016-05-09 14:56:52 +0100
commit733b2cf19b5d5a93617f24b2447b9a30ba22d303 (patch)
treebba432528d830b96aff7def157308fde0d5890ad /src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entries.html.twig
parentb1fcd47a5c7992fdfc907a8f8f1aab5fd98e7c6a (diff)
downloadwallabag-733b2cf19b5d5a93617f24b2447b9a30ba22d303.tar.gz
wallabag-733b2cf19b5d5a93617f24b2447b9a30ba22d303.tar.zst
wallabag-733b2cf19b5d5a93617f24b2447b9a30ba22d303.zip
Add unread filter to entries pages
Add the ability to filter for unread pages in the filters menu.
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.twig5
1 files changed, 5 insertions, 0 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 cc4038c5..9ce5b645 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
@@ -126,6 +126,11 @@
126 {{ form_label(form.isStarred) }} 126 {{ form_label(form.isStarred) }}
127 </div> 127 </div>
128 128
129 <div class="input-field col s6 with-checkbox">
130 {{ form_widget(form.isUnread) }}
131 {{ form_label(form.isUnread) }}
132 </div>
133
129 <div class="col s12"> 134 <div class="col s12">
130 <label>{{ 'entry.filters.preview_picture_help'|trans }}</label> 135 <label>{{ 'entry.filters.preview_picture_help'|trans }}</label>
131 </div> 136 </div>