]> git.immae.eu Git - github/wallabag/wallabag.git/blame - themes/baggy/edit-tags.twig
a lot of enhancements related to tags: tags list is now sorted, shows number of artic...
[github/wallabag/wallabag.git] / themes / baggy / edit-tags.twig
CommitLineData
943ac3c7
NL
1{% extends "layout.twig" %}
2{% block title %}edit tags{% endblock %}
3{% block menu %}
4{% include '_menu.twig' %}
5{% endblock %}
6{% block content %}
fb26cc93
MR
7
8<script src="{{ poche_url }}/themes/default/js/jquery-ui-1.10.4.custom.min.js"></script>
9<script src="{{ poche_url }}/themes/default/js/autoCompleteTags.js"></script>
10<link rel="stylesheet" href="{{ poche_url }}/themes/default/css/jquery-ui-1.10.4.custom.min.css" media="all">
11
032e0ca1
MR
12<div id="article">
13 <h2>{{ entry.title|raw }}</21>
14</div>
943ac3c7
NL
15{% if tags is empty %}
16<div class="notags">no tags</div>
17{% endif %}
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 %}
20</ul>
21<form method="post" action="./?action=add_tag">
943ac3c7 22 <input type="hidden" name="entry_id" value="{{ entry_id }}" />
032e0ca1 23 <label for="value">Add tags: </label><input type="text" placeholder="interview, editorial, video" id="value" name="value" required="required" />
943ac3c7 24 <input type="submit" value="Tag" />
fb26cc93
MR
25 <p>{% trans "Start typing for auto complete." %}<br>
26 {% trans "You can enter multiple tags, separated by commas." %}</p>
943ac3c7
NL
27</form>
28<a class="icon icon-reply return" href="./?view=view&id={{ entry_id }}">{% trans "return to article" %}</a>
29{% endblock %}