vito / chyrp

The ultra-lightweight ultra-flexible blogging engine with a fetish for birds and misspellings.

chyrp / modules / tags / pages / admin / edit_tags.twig
4e3143b9 » vito 2008-08-29 Added bulk tag managing and... 1 {% extends "layout.twig" %}
2
3 {% block title %}${ "Edit Tags" | translate("tags") }{% endblock %}
4
5 {% block content %}
6 <h1>${ "Edit Tags" | translate("tags") | format(post.title) }</h1>
7 <div class="tag_cloud">
8 <form action="{% admin "update_tags" %}" method="post" accept-charset="utf-8">
9 <fieldset>
10 <p>
11 <input type="text" name="tags" value="${ post.tags.unlinked | join(", ") | escape }" id="tags" class="big expand" />
12 </p>
13 <p class="buttons">
14 <button class="yay" name="delete">
15 <img src="images/icons/success.png" alt="delete" /> ${ "Update" | translate }
16 </button>
17 <input type="hidden" name="hash" value="$site.secure_hashkey" id="hash" />
18 <input type="hidden" name="id" value="$post.id" id="clean" />
19 </p>
20 </fieldset>
21 </form>
22 </div>
23 {% endblock %}