Files
appunti/notes/templates/notes/note_form.html
2025-12-10 19:21:57 +05:30

12 lines
235 B
HTML

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