summaryrefslogtreecommitdiff
path: root/templates/apps/tag/modify.html
blob: 82188895eae939cad04c056441e519189a38b6a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{% extends "tree.html" %}
{% block widgets %}
	$("#taglist").tagit({
		existingTags: [{% for t in tagobj.tags %}'{{t}}',{% endfor %}],
		namePrefix: 'tags'
	});
{% endblock %}
{% block content %}
    <div>
       <h1>Modify {{tagtype|escape}} on {{type|escape}} {{name.short|escape}}</h1>
       <form method="POST" class="bbq ui-helper-reset ui-widget ui-widget-content ui-corner-all formpadding">
          <div style="margin-top: 20px;">
            <ul id="taglist"></ul>
          </div>
          <div class="ilist button" style="padding-bottom: 10px;" >
             <ul>
                <li><input type="submit" value="Save Changes" /></li>
                <li style="float: right;"><input type="button" onClick="history.go(-1)" value="Cancel"/></li>
             </ul>
          </div>
       </form>
   </div>
{% endblock %}