]> git.immae.eu Git - github/wallabag/wallabag.git/blame - themes/default/edit-tags.twig
Updated tag edit page
[github/wallabag/wallabag.git] / themes / default / edit-tags.twig
CommitLineData
6cab59c3
NL
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 %}
8no tags
9{% endif %}
10<ul>
c432fa16 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 %}
6cab59c3 12</ul>
c432fa16 13<form method="post" action="./?action=add_tag">
b1bfd4cb
WT
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>
c432fa16 16 <input type="hidden" name="entry_id" value="{{ entry_id }}" />
b1bfd4cb 17 <input type="submit" value="Tag" />
6cab59c3 18</form>
b1bfd4cb
WT
19<a href="./?view=view&id={{ entry_id }}">{% trans "return to article" %}</a>
20{% endblock %}