Implemented basic models

This commit is contained in:
Jurn Wubben 2025-05-19 22:47:45 +02:00
parent 6bceef1664
commit 3ba6099976
16 changed files with 257 additions and 24 deletions

11
app/templates/new.html Normal file
View file

@ -0,0 +1,11 @@
<form action="/new" method="POST">
{{ form.hidden_tag() }}
{{ form.title.label }}
{{ form.title() }}
{{ form.description.label }}
{{ form.description() }}
{{ form.submit() }}
</form>