]> git.immae.eu Git - github/wallabag/wallabag.git/blob - themes/courgette/edit-tags.twig
deleting send to kindle function
[github/wallabag/wallabag.git] / themes / courgette / edit-tags.twig
1 {% extends "layout.twig" %}
2 {% block title %}edit tags{% endblock %}
3 {% block menu %}
4 {% include '_menu.twig' %}
5 {% endblock %}
6 {% block content %}
7 {% if tags is empty %}
8 <em>no tags</em>
9 {% endif %}
10 <ul class='tag-list'>
11 {% for tag in tags %}<li>{{ tag.value }} <a href="./?action=remove_tag&amp;tag_id={{ tag.id }}&amp;id={{ entry_id }}">✘</a></li>{% endfor %}
12 </ul>
13 <form method="post" action="./?action=add_tag" class="tagForm">
14 <label for="value">Add tags: </label><input type="text" placeholder="interview, editorial, video" id="value" name="value" required="required" />
15 <p>{% trans "You can enter multiple tags, separated by commas." %}</p>
16 <input type="hidden" name="entry_id" value="{{ entry_id }}" />
17 <input type="submit" value="Tag" />
18 </form>
19 <a class="back link" href="./?view=view&id={{ entry_id }}">{% trans "return to article" %}</a>
20 {% endblock %}