Added status table.

This commit is contained in:
Yaro Kasear 2025-10-24 10:44:36 -05:00
parent db287fb8ac
commit f9d950c425
10 changed files with 108 additions and 19 deletions

View file

@ -1,4 +1,4 @@
{# show label unless hidden/custom #}
<!-- FIELD: {{ field_name }} ({{ field_type }}) -->
{% if field_type != 'hidden' and field_label %}
<label for="{{ field_name }}"
{% if label_attrs %}{% for k,v in label_attrs.items() %}

View file

@ -1,5 +1,7 @@
<!-- FORM: {{ model_name|lower }} -->
<form method="POST" id="{{ model_name|lower }}_form">
{% macro render_row(row) %}
<!-- ROW: {{ row['name'] }} -->
{% if row.fields or row.children or row.legend %}
{% if row.legend %}<legend>{{ row.legend }}</legend>{% endif %}
<fieldset