MEIM_LSG/templates/edit.html

12 lines
313 B
HTML
Raw Normal View History

2018-12-12 20:14:16 +01:00
{% extends "base.html" %}
{% block title %} {{ title }} {% endblock title %}
{% 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 content %}