Yeet useless tables

Yeet useless data paths in dockerfile
Add order into templates file
This commit is contained in:
Michał Gdula 2023-06-22 13:19:00 +00:00
parent b19dedc568
commit 300c80fcd5
17 changed files with 86 additions and 106 deletions

View file

@ -0,0 +1,15 @@
{% macro text(id, name, type="text", required=False, minlength=0) %}
<span class="text-input">
<label for="{{ id }}">
{{ name|title }}
</label>
<input
type="{{ type }}"
name="{{ name }}"
id="{{ id }}"
{% if required %}required{% endif %}
minlength="{{ minlength }}"
>
</span>
{% endmacro %}