aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Resources/views/themes/material
diff options
context:
space:
mode:
authorJeremy Benoist <j0k3r@users.noreply.github.com>2016-08-28 15:56:17 +0200
committerGitHub <noreply@github.com>2016-08-28 15:56:16 +0200
commit13d44ca766b1020327f0b9b005dc2e95deb156a1 (patch)
treed21dcb2f718cb9c593ed20d73ca4164ee859f165 /src/Wallabag/CoreBundle/Resources/views/themes/material
parent8635ab1cd1ae90d7757a59444ef80759a040eccf (diff)
parent0184e09a66dbc400d831ba9cc045924cb16722e9 (diff)
downloadwallabag-13d44ca766b1020327f0b9b005dc2e95deb156a1.tar.gz
wallabag-13d44ca766b1020327f0b9b005dc2e95deb156a1.tar.zst
wallabag-13d44ca766b1020327f0b9b005dc2e95deb156a1.zip
Merge pull request #2243 from wallabag/feature-untagged-entries
Add untagged entries
Diffstat (limited to 'src/Wallabag/CoreBundle/Resources/views/themes/material')
-rw-r--r--src/Wallabag/CoreBundle/Resources/views/themes/material/Tag/tags.html.twig3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Wallabag/CoreBundle/Resources/views/themes/material/Tag/tags.html.twig b/src/Wallabag/CoreBundle/Resources/views/themes/material/Tag/tags.html.twig
index 9495f543..1690633a 100644
--- a/src/Wallabag/CoreBundle/Resources/views/themes/material/Tag/tags.html.twig
+++ b/src/Wallabag/CoreBundle/Resources/views/themes/material/Tag/tags.html.twig
@@ -12,4 +12,7 @@
12 <li id="tag-{{ tag.id|e }}" class="col l4 m6 s12"><a href="{{ path('tag_entries', {'slug': tag.slug}) }}">{{tag.label}} ({{ tag.entries.getValues | length }})</a></li> 12 <li id="tag-{{ tag.id|e }}" class="col l4 m6 s12"><a href="{{ path('tag_entries', {'slug': tag.slug}) }}">{{tag.label}} ({{ tag.entries.getValues | length }})</a></li>
13 {% endfor %} 13 {% endfor %}
14 </ul> 14 </ul>
15 <div>
16 <a href="{{ path('untagged') }}">{{ 'tag.list.see_untagged_entries'|trans }}</a>
17 </div>
15{% endblock %} 18{% endblock %}