aboutsummaryrefslogtreecommitdiffhomepage
path: root/themes/baggy/edit-tags.twig
diff options
context:
space:
mode:
authortcit <tcit@tcit.fr>2014-10-27 14:00:47 +0100
committertcit <tcit@tcit.fr>2014-10-27 14:00:47 +0100
commit7ee1972599f52924151794fe6c933ce69297f7f3 (patch)
treee026a075f308a34641aeac260355d0a6c9043247 /themes/baggy/edit-tags.twig
parent750d904a16465bb01eac64e87aba0b27c6fb7d12 (diff)
downloadwallabag-7ee1972599f52924151794fe6c933ce69297f7f3.tar.gz
wallabag-7ee1972599f52924151794fe6c933ce69297f7f3.tar.zst
wallabag-7ee1972599f52924151794fe6c933ce69297f7f3.zip
translation fix for #887 and tiny display fix
Diffstat (limited to 'themes/baggy/edit-tags.twig')
-rwxr-xr-xthemes/baggy/edit-tags.twig4
1 files changed, 2 insertions, 2 deletions
diff --git a/themes/baggy/edit-tags.twig b/themes/baggy/edit-tags.twig
index 2113e964..d7c15033 100755
--- a/themes/baggy/edit-tags.twig
+++ b/themes/baggy/edit-tags.twig
@@ -13,14 +13,14 @@
13 <h2>{{ entry.title|raw }}</21> 13 <h2>{{ entry.title|raw }}</21>
14</div> 14</div>
15{% if tags is empty %} 15{% if tags is empty %}
16<div class="notags">no tags</div> 16<div class="notags">{% trans "no tags" %}</div>
17{% endif %} 17{% endif %}
18<ul> 18<ul>
19{% for tag in tags %}<li>{{ tag.value }} <a href="./?action=remove_tag&amp;tag_id={{ tag.id }}&amp;id={{ entry_id }}">✘</a></li>{% endfor %} 19{% for tag in tags %}<li>{{ tag.value }} <a href="./?action=remove_tag&amp;tag_id={{ tag.id }}&amp;id={{ entry_id }}">✘</a></li>{% endfor %}
20</ul> 20</ul>
21<form method="post" action="./?action=add_tag"> 21<form method="post" action="./?action=add_tag">
22 <input type="hidden" name="entry_id" value="{{ entry_id }}" /> 22 <input type="hidden" name="entry_id" value="{{ entry_id }}" />
23 <label for="value">Add tags: </label><input type="text" placeholder="interview, editorial, video" id="value" name="value" required="required" /> 23 <label for="value">{% trans "Add tags:" %}</label><input type="text" placeholder="{% trans "interview" %}, {% trans "editorial" %}, {% trans "video" %}" id="value" name="value" required="required" />
24 <input type="submit" value="Tag" /> 24 <input type="submit" value="Tag" />
25 <p>{% trans "Start typing for auto complete." %}<br> 25 <p>{% trans "Start typing for auto complete." %}<br>
26 {% trans "You can enter multiple tags, separated by commas." %}</p> 26 {% trans "You can enter multiple tags, separated by commas." %}</p>