aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Resources/views/themes/material/Tag/new_form.html.twig
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2016-02-16 12:27:43 +0100
committerNicolas LÅ“uillet <nicolas@loeuillet.org>2016-02-16 12:27:43 +0100
commitf6249b67f66371b70a9c5a076ed03e5653c1330e (patch)
tree6d884c508bd166c67c28781ac839393f8167f933 /src/Wallabag/CoreBundle/Resources/views/themes/material/Tag/new_form.html.twig
parent559cd55bc8011b11706c1ffc5c0563b6f2f39491 (diff)
parent8935a97c17e6524f4a2459b886445562eed19614 (diff)
downloadwallabag-f6249b67f66371b70a9c5a076ed03e5653c1330e.tar.gz
wallabag-f6249b67f66371b70a9c5a076ed03e5653c1330e.tar.zst
wallabag-f6249b67f66371b70a9c5a076ed03e5653c1330e.zip
Merge pull request #1668 from wallabag/v2-stuff
Few updates
Diffstat (limited to 'src/Wallabag/CoreBundle/Resources/views/themes/material/Tag/new_form.html.twig')
-rw-r--r--src/Wallabag/CoreBundle/Resources/views/themes/material/Tag/new_form.html.twig15
1 files changed, 7 insertions, 8 deletions
diff --git a/src/Wallabag/CoreBundle/Resources/views/themes/material/Tag/new_form.html.twig b/src/Wallabag/CoreBundle/Resources/views/themes/material/Tag/new_form.html.twig
index 0534a4cc..79310307 100644
--- a/src/Wallabag/CoreBundle/Resources/views/themes/material/Tag/new_form.html.twig
+++ b/src/Wallabag/CoreBundle/Resources/views/themes/material/Tag/new_form.html.twig
@@ -1,14 +1,13 @@
1<form name="tag" method="post" action="{{ path('new_tag', { 'entry': entry.id })}}"> 1<form name="tag" method="post" action="{{ path('new_tag', { 'entry': entry.id })}}">
2 {% if form_errors(form) %}
3 <span class="black-text">{{ form_errors(form) }}</span>
4 {% endif %}
2 5
3 {% if form_errors(form) %} 6 {% if form_errors(form.label) %}
4 <span class="black-text">{{ form_errors(form) }}</span> 7 <span class="black-text">{{ form_errors(form.label) }}</span>
5 {% endif %} 8 {% endif %}
6 9
7 {% if form_errors(form.label) %} 10 {{ form_widget(form.label, { 'attr': {'autocomplete': 'off'} }) }}
8 <span class="black-text">{{ form_errors(form.label) }}</span>
9 {% endif %}
10
11 {{ form_widget(form.label, { 'attr': {'autocomplete': 'off'} }) }}
12 11
13 <div class="hidden">{{ form_rest(form) }}</div> 12 <div class="hidden">{{ form_rest(form) }}</div>
14</form> 13</form>