forked from server/soundboard
19 lines
638 B
HTML
19 lines
638 B
HTML
{% extends "base.html" %}
|
|
{% block navigation %}
|
|
{% endblock %}
|
|
{% block content %}
|
|
<div class="editform">
|
|
<h1>Edit {{ sound }}</h1>
|
|
<form action="{{ request.path }}" method="POST">
|
|
<input type="text" id="search" placeholder="Search Tag" />
|
|
<ul class="tags">
|
|
{% for tag in tags %}
|
|
<li class="tag"><span>{{ tag.name }}</span><input type="checkbox" name="cb-{{ tag.name }}" {{ 'checked="true" '|safe if tag.checked }}/></li>
|
|
{% endfor %}
|
|
</ul>
|
|
<input type="submit" name="cancel" value="Cancel" />
|
|
<input type="submit" name="submit" value="Save" />
|
|
</form>
|
|
</div>
|
|
{% endblock %}
|