Files
arbit/templates/inventory/note_form.html
2026-05-18 14:08:13 -04:00

11 lines
254 B
HTML

{% extends "base.html" %}
{% block content %}
<div class="card">
<h1>New note</h1>
<form method="post" class="grid">
{% csrf_token %}
{{ form.as_p }}
<button type="submit">Save note</button>
</form>
</div>
{% endblock %}