diff options
-rw-r--r-- | src/Wallabag/CoreBundle/Resources/views/themes/material/Config/index.html.twig | 12 |
1 files changed, 12 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 d27a8ca6..1a8526f3 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 | |||
@@ -185,6 +185,18 @@ | |||
185 | </div> | 185 | </div> |
186 | 186 | ||
187 | <div id="set5" class="col s12"> | 187 | <div id="set5" class="col s12"> |
188 | <div class="row"> | ||
189 | <div class="input-field col s12"> | ||
190 | <ul> | ||
191 | {% for tagging_rule in app.user.config.taggingRules %} | ||
192 | <li> | ||
193 | if « {{ tagging_rule.rule }} » then tag as « {{ tagging_rule.tags|join(', ') }} » | ||
194 | </li> | ||
195 | {% endfor %} | ||
196 | </ul> | ||
197 | </div> | ||
198 | </div> | ||
199 | |||
188 | <form action="{{ path('config') }}#set5" method="post" {{ form_enctype(form.pwd) }}> | 200 | <form action="{{ path('config') }}#set5" method="post" {{ form_enctype(form.pwd) }}> |
189 | {{ form_errors(form.pwd) }} | 201 | {{ form_errors(form.pwd) }} |
190 | 202 | ||