soundboard/templates/edit.html
2017-11-03 16:17:10 +01:00

19 lines
542 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" /></li>
{% endfor %}
</ul>
<input type="button" value="Cancel" />
<input type="submit" value="Save" />
</form>
</div>
{% endblock %}