18 lines
340 B
HTML
18 lines
340 B
HTML
|
{% 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 %}
|