First commit of POC version

This commit is contained in:
2026-01-01 21:07:34 +01:00
parent 3ea6e14d0e
commit 7ab655626a
65 changed files with 12372 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
{% extends "base.html" %}
{% block content %}
<form method="POST">
{{ form.hidden_tag() }}
<div class="list">
<article>
{{ form.field1(class="") }}
{{ form.field2(class="") }}
{{ form.field3(class="") }}
{{ form.field4(class="") }}
</article>
</div>
<button type="submit" class="contrast">{{ form.submit.label }}</button>
</form>
{% endblock %}