aboutsummaryrefslogtreecommitdiffhomepage
path: root/themes/courgette/edit-tags.twig
diff options
context:
space:
mode:
authorNicolas Lœuillet <nicolas@loeuillet.org>2014-11-24 13:11:57 +0100
committerNicolas Lœuillet <nicolas@loeuillet.org>2014-11-24 13:11:57 +0100
commit85c5a1ff8d919d3d36a8125c9bbd0d9220025729 (patch)
tree28a95f126132dbe6c53e1e48f5c2099d29d5649b /themes/courgette/edit-tags.twig
parent7b8bb75228fff2a629388313a3d12cd63c846ad6 (diff)
downloadwallabag-85c5a1ff8d919d3d36a8125c9bbd0d9220025729.tar.gz
wallabag-85c5a1ff8d919d3d36a8125c9bbd0d9220025729.tar.zst
wallabag-85c5a1ff8d919d3d36a8125c9bbd0d9220025729.zip
failover if theme folder doesn't exist
Diffstat (limited to 'themes/courgette/edit-tags.twig')
-rw-r--r--themes/courgette/edit-tags.twig20
1 files changed, 0 insertions, 20 deletions
diff --git a/themes/courgette/edit-tags.twig b/themes/courgette/edit-tags.twig
deleted file mode 100644
index bcddbe46..00000000
--- a/themes/courgette/edit-tags.twig
+++ /dev/null
@@ -1,20 +0,0 @@
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 %}