TandoorRecipes/cookbook/templates/new_category.html
2018-02-01 00:28:15 +01:00

17 lines
394 B
HTML

{% extends "base.html" %}
{% block title %}Neue Kategorie{% endblock %}
{% 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 %}