diff options
author | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2015-08-20 17:59:58 +0200 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2015-08-21 07:30:48 +0200 |
commit | e1779760999f676cb7a74a201bc2a389959702d4 (patch) | |
tree | eded736468a27083aebc725ba9e133fc6c7d7ab2 /src/Wallabag/CoreBundle/Resources | |
parent | 89659c9eae338cd29e5919b5ffde6924189a59ca (diff) | |
download | wallabag-e1779760999f676cb7a74a201bc2a389959702d4.tar.gz wallabag-e1779760999f676cb7a74a201bc2a389959702d4.tar.zst wallabag-e1779760999f676cb7a74a201bc2a389959702d4.zip |
filters: add test for status filter and adapt other tests results
Diffstat (limited to 'src/Wallabag/CoreBundle/Resources')
-rw-r--r-- | src/Wallabag/CoreBundle/Resources/views/Entry/entries.html.twig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Wallabag/CoreBundle/Resources/views/Entry/entries.html.twig b/src/Wallabag/CoreBundle/Resources/views/Entry/entries.html.twig index a794df0e..118a2f4b 100644 --- a/src/Wallabag/CoreBundle/Resources/views/Entry/entries.html.twig +++ b/src/Wallabag/CoreBundle/Resources/views/Entry/entries.html.twig | |||
@@ -21,7 +21,7 @@ | |||
21 | {% if entries is empty %} | 21 | {% if entries is empty %} |
22 | <div class="messages warning"><p>{% trans %}No articles found.{% endtrans %}</p></div> | 22 | <div class="messages warning"><p>{% trans %}No articles found.{% endtrans %}</p></div> |
23 | {% else %} | 23 | {% else %} |
24 | <div><form>{{ form_rest(form) }}<button class="btn waves-effect waves-light" type="submit" id="submit-filter" value="filter">Filter</button></form></div> | 24 | <div><form action="{{ path('all') }}">{{ form_rest(form) }}<button class="btn waves-effect waves-light" type="submit" id="submit-filter" value="filter">Filter</button></form></div> |
25 | {% for entry in entries %} | 25 | {% for entry in entries %} |
26 | <div id="entry-{{ entry.id|e }}" class="entry"> | 26 | <div id="entry-{{ entry.id|e }}" class="entry"> |
27 | <h2><a href="{{ path('view', { 'id': entry.id }) }}">{{ entry.title|raw }}</a></h2> | 27 | <h2><a href="{{ path('view', { 'id': entry.id }) }}">{{ entry.title|raw }}</a></h2> |