Fix tags count in tags list on baggy

This commit is contained in:
Jeremy Benoist 2017-06-10 11:21:47 +02:00
parent a899399989
commit a9b984feee
No known key found for this signature in database
GPG key ID: BCA73962457ACC3C

View file

@ -9,7 +9,7 @@
<ul>
{% for tag in tags %}
<li id="tag-{{ tag.id|e }}"><a href="{{ path('tag_entries', {'slug': tag.slug}) }}">{{tag.label}} ({{ tag.nbEntries | length }})</a></li>
<li id="tag-{{ tag.id|e }}"><a href="{{ path('tag_entries', {'slug': tag.slug}) }}">{{tag.label}} ({{ tag.nbEntries }})</a></li>
{% endfor %}
</ul>