TandoorRecipes/cookbook/templates/new_category.html
2018-01-31 23:40:16 +01:00

15 lines
347 B
HTML

{% extends "base.html" %}
{% block content %}
<h3>
Neue Kategorie
<small class="text-muted">Neue Kategorie für ein Rezept</small>
</h3>
<form method="POST" class="post-form">{% csrf_token %}
{{ form.as_p }}
<button type="submit" class="save btn btn-default">Save</button>
</form>
{% endblock %}