aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Tag/tags.html.twig
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2016-05-03 21:12:40 +0200
committerNicolas LÅ“uillet <nicolas@loeuillet.org>2016-05-03 21:12:40 +0200
commit12c697562e11bed4d2c2af0521a67219dd62ee63 (patch)
treed5cf4549af9469e4bd5d701b6d5dbb0e70638585 /src/Wallabag/CoreBundle/Resources/views/themes/baggy/Tag/tags.html.twig
parent9b57bac8b9ad95d1b4de051222b0f351991997f0 (diff)
downloadwallabag-12c697562e11bed4d2c2af0521a67219dd62ee63.tar.gz
wallabag-12c697562e11bed4d2c2af0521a67219dd62ee63.tar.zst
wallabag-12c697562e11bed4d2c2af0521a67219dd62ee63.zip
Fix number of entries in tag/list
Fix #2006
Diffstat (limited to 'src/Wallabag/CoreBundle/Resources/views/themes/baggy/Tag/tags.html.twig')
-rw-r--r--src/Wallabag/CoreBundle/Resources/views/themes/baggy/Tag/tags.html.twig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Tag/tags.html.twig b/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Tag/tags.html.twig
index bb0ca939..4df37174 100644
--- a/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Tag/tags.html.twig
+++ b/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Tag/tags.html.twig
@@ -9,7 +9,7 @@
9 9
10 <ul> 10 <ul>
11 {% for tag in tags %} 11 {% for tag in tags %}
12 <li id="tag-{{ tag.id|e }}">{{tag.label}} ({{ tag.entries.getValues | length }})</li> 12 <li id="tag-{{ tag.id|e }}">{{tag.label}} ({{ tag.getEntriesByUser(app.user.id) | length }})</li>
13 {% endfor %} 13 {% endfor %}
14 </ul> 14 </ul>
15{% endblock %} 15{% endblock %}