10 lines
281 B
HTML
Raw Permalink Normal View History

2019-12-10 15:01:13 +01:00
{% extends "base.html" %}
{% block title %}edit.html{% 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 %}