Files
appunti/server/notes/templates/notes/note_form.html

13 lines
272 B
HTML

{% extends "notes/base.html" %}
{% block title %}Post a Note{% endblock %}
{% block body %}
<h1>Post a Note</h1>
{% include "notes/messages.html" %}
<form method="post">{% csrf_token %}
{{ form.as_p }}
<button type="submit">Post!</button>
</form>
{% endblock %}