soundboard/templates/edit.html
2017-07-18 20:37:52 +02:00

30 lines
746 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% extends "base.html" %}
{% block navigation %}
{% endblock %}
{% block content %}
<div class="editform">
<h1>Filename</h1>
<form action="{{ request.path }}" method="POST">
<div class="table-row">
<div class="table-cell">
<label for="tags">Tags</label>
</div>
<div class="table-cell">
<input type="input" name="tags" id="tags" />
</div>
</div>
<ul class="tags">
<li>Test<span class="reset"></span></li>
</ul>
<div class="table-row">
<div class="table-cell">
</div>
<div class="table-cell">
<input type="button" value="Cancel" />
<input type="submit" value="Submit" />
</div>
</div>
</form>
</div>
{% endblock %}