aboutsummaryrefslogblamecommitdiffhomepage
path: root/themes/default/edit-tags.twig
blob: 0bd1aba7b96cc874915ac5a76cc8b106b8785527 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

















                                                                                                          
{% extends "layout.twig" %}
{% block title %}edit tags{% endblock %}
{% block menu %}
{% include '_menu.twig' %}
{% endblock %}
{% block content %}
{% if tags is empty %}
no tags
{% endif %}
<ul>
{% for tag in tags %}<li>{{ tag.value }} <a href="#"></a></li>{% endfor %}
</ul>
<form method="post" action="#">
    <label for="value">New tags: </label><input type="text" id="value" name="value" required="required" />
    {% trans "you can type several tags, separated by comma" %}<br />
    <input type="submit" value="add tags" />
</form>
{% endblock %}