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
committerThomas Citharel <tcit@tcit.fr>2016-06-23 09:15:50 +0200
commit710f8e69d76c1a0d6279397c0283612ccef8ae69 (patch)
treef635b5efc001bf25a221b63b0d5b8d8d0bb04986 /src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entries.html.twig
parent235026e2c708eea306a12f1cc1de3da38593db37 (diff)
downloadwallabag-710f8e69d76c1a0d6279397c0283612ccef8ae69.tar.gz
wallabag-710f8e69d76c1a0d6279397c0283612ccef8ae69.tar.zst
wallabag-710f8e69d76c1a0d6279397c0283612ccef8ae69.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 1d569226..920fa933 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>