demoweb/templates/posts/edit.html
Mai Gillmann d970005a13 03.12
2019-12-03 15:16:55 +01:00

13 lines
279 B
HTML

{% extends 'base.html' %}
{% block title %}
Edit
{% 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 %}