17 lines
394 B
HTML
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 %} |