18 lines
340 B
HTML
Raw Permalink Normal View History

{% extends "base.html" %}
{% block title %}
Eingabefenster für neuen instance von "Notice"
{% endblock %}
{% block content %}
<h1>Neue Nachricht</h1>
<form method="POST">
{% csrf_token %}
{{ form.as_p }}
<button type="submit" class="save btn btn-default">Speichern</button>
</form>
{% endblock %}