PR/templates/polls/edit.html

11 lines
254 B
HTML
Raw Normal View History

2019-12-03 14:36:59 +01:00
{% extends 'base.html' %}
{% 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 %}