aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Resources/views/Tag
diff options
context:
space:
mode:
authorJeremy Benoist <j0k3r@users.noreply.github.com>2015-08-09 22:47:28 +0200
committerJeremy Benoist <j0k3r@users.noreply.github.com>2015-08-09 22:47:28 +0200
commit47cadf36c8f7c20ba1edf26e184637d33a52cf35 (patch)
treeb25f67a8d32c3d211e6d16dfe010805c3bdafc0e /src/Wallabag/CoreBundle/Resources/views/Tag
parent20a69dffe7e1caf01c12b2c39dbb2f9cb8093925 (diff)
parentd0b90fbe18da72dc09a0ef748fa178314f6657b6 (diff)
downloadwallabag-47cadf36c8f7c20ba1edf26e184637d33a52cf35.tar.gz
wallabag-47cadf36c8f7c20ba1edf26e184637d33a52cf35.tar.zst
wallabag-47cadf36c8f7c20ba1edf26e184637d33a52cf35.zip
Merge pull request #1292 from wallabag/v2-tags-route
Add tags list display
Diffstat (limited to 'src/Wallabag/CoreBundle/Resources/views/Tag')
-rw-r--r--src/Wallabag/CoreBundle/Resources/views/Tag/tags.html.twig13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/Wallabag/CoreBundle/Resources/views/Tag/tags.html.twig b/src/Wallabag/CoreBundle/Resources/views/Tag/tags.html.twig
new file mode 100644
index 00000000..c2a461b8
--- /dev/null
+++ b/src/Wallabag/CoreBundle/Resources/views/Tag/tags.html.twig
@@ -0,0 +1,13 @@
1{% extends "WallabagCoreBundle::layout.html.twig" %}
2
3{% block title "Tags" %}
4
5{% block content %}
6 {% if tags is empty %}
7 <div class="messages warning"><p>{% trans %}No tags found.{% endtrans %}</p></div>
8 {% else %}
9 {% for tag in tags %}
10 {{tag.label}}
11 {% endfor %}
12 {% endif %}
13{% endblock %}