Added status table.
This commit is contained in:
parent
db287fb8ac
commit
f9d950c425
10 changed files with 108 additions and 19 deletions
|
|
@ -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() %}
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue