public
Description: The ultra-lightweight ultra-flexible blogging engine with a fetish for birds and misspellings.
Homepage: http://chyrp.net/
Clone URL: git://github.com/vito/chyrp.git
Click here to lend your support to: chyrp and make a donation at www.pledgie.com !
chyrp / modules / tags / pages / admin / edit_tags.twig
100644 23 lines (21 sloc) 0.845 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{% extends "layout.twig" %}
 
{% block title %}${ "Edit Tags" | translate("tags") }{% endblock %}
 
{% block content %}
<h1>${ "Edit Tags" | translate("tags") | format(post.title) }</h1>
<div class="tag_cloud">
<form action="{% admin "update_tags" %}" method="post" accept-charset="utf-8">
<fieldset>
<p>
<input type="text" name="tags" value="${ post.tags.unlinked | join(", ") | escape }" id="tags" class="big expand" />
</p>
<p class="buttons">
<button class="yay" name="delete">
<img src="images/icons/success.png" alt="delete" /> ${ "Update" | translate }
</button>
<input type="hidden" name="hash" value="$site.secure_hashkey" id="hash" />
<input type="hidden" name="id" value="$post.id" id="clean" />
</p>
</fieldset>
</form>
</div>
{% endblock %}