aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Resources/views/themes/material/Config/index.html.twig
diff options
context:
space:
mode:
authorKévin Gomez <contact@kevingomez.fr>2015-10-25 10:45:15 +0100
committerKévin Gomez <contact@kevingomez.fr>2015-11-11 16:27:19 +0100
commit52e423f30761561fa2ad82c708d9fa9186562b1f (patch)
tree35bb85478b635f4e0c185f6567d9be94a60da082 /src/Wallabag/CoreBundle/Resources/views/themes/material/Config/index.html.twig
parent625acf335298186b4ff983f9321900d1238e854b (diff)
downloadwallabag-52e423f30761561fa2ad82c708d9fa9186562b1f.tar.gz
wallabag-52e423f30761561fa2ad82c708d9fa9186562b1f.tar.zst
wallabag-52e423f30761561fa2ad82c708d9fa9186562b1f.zip
Provide a way to delete tagging rules
Diffstat (limited to 'src/Wallabag/CoreBundle/Resources/views/themes/material/Config/index.html.twig')
-rw-r--r--src/Wallabag/CoreBundle/Resources/views/themes/material/Config/index.html.twig3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Wallabag/CoreBundle/Resources/views/themes/material/Config/index.html.twig b/src/Wallabag/CoreBundle/Resources/views/themes/material/Config/index.html.twig
index 993c5826..1457fe51 100644
--- a/src/Wallabag/CoreBundle/Resources/views/themes/material/Config/index.html.twig
+++ b/src/Wallabag/CoreBundle/Resources/views/themes/material/Config/index.html.twig
@@ -191,6 +191,9 @@
191 {% for tagging_rule in app.user.config.taggingRules %} 191 {% for tagging_rule in app.user.config.taggingRules %}
192 <li> 192 <li>
193 if « {{ tagging_rule.rule }} » then tag as « {{ tagging_rule.tags|join(', ') }} » 193 if « {{ tagging_rule.rule }} » then tag as « {{ tagging_rule.tags|join(', ') }} »
194 <a href="{{ path('delete_tagging_rule', {id: tagging_rule.id}) }}" title="{% trans %}Delete{% endtrans %}">
195 <i class="tool grey-text delete mdi-action-delete"></i>
196 </a>
194 </li> 197 </li>
195 {% endfor %} 198 {% endfor %}
196 </ul> 199 </ul>