aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Entry/entries.html.twig
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2016-04-16 07:19:30 +0200
committerNicolas LÅ“uillet <nicolas@loeuillet.org>2016-04-16 07:19:30 +0200
commit1f034a33162f17a80101afd41661797ca2aae25f (patch)
tree87528dd1e1fbf4adcb0c88aa95ebd1588f6e7eb3 /src/Wallabag/CoreBundle/Resources/views/themes/baggy/Entry/entries.html.twig
parentd1f4996b77bc9c7b692cd98d835476f1c84edc28 (diff)
downloadwallabag-1f034a33162f17a80101afd41661797ca2aae25f.tar.gz
wallabag-1f034a33162f17a80101afd41661797ca2aae25f.tar.zst
wallabag-1f034a33162f17a80101afd41661797ca2aae25f.zip
Hide pagination if we only have one entry to display
Diffstat (limited to 'src/Wallabag/CoreBundle/Resources/views/themes/baggy/Entry/entries.html.twig')
-rw-r--r--src/Wallabag/CoreBundle/Resources/views/themes/baggy/Entry/entries.html.twig4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Entry/entries.html.twig b/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Entry/entries.html.twig
index 04e51955..03e785bf 100644
--- a/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Entry/entries.html.twig
+++ b/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Entry/entries.html.twig
@@ -8,7 +8,9 @@
8 <div class="nb-results">{{ 'entry.list.number_on_the_page'|transchoice(entries.count) }}</div> 8 <div class="nb-results">{{ 'entry.list.number_on_the_page'|transchoice(entries.count) }}</div>
9 <div class="pagination"> 9 <div class="pagination">
10 <a href="#" id="filter">{{ 'entry.filters.title'|trans }}</a> 10 <a href="#" id="filter">{{ 'entry.filters.title'|trans }}</a>
11 {{ pagerfanta(entries, 'twitter_bootstrap_translated', {'proximity': 1}) }} 11 {% if entries.count > 1 %}
12 {{ pagerfanta(entries, 'twitter_bootstrap_translated', {'proximity': 1}) }}
13 {% endif %}
12 </div> 14 </div>
13 </div> 15 </div>
14 {% endblock %} 16 {% endblock %}