{% extends "_layout" %} {% import "_form_macros" as form %} {% block title -%} Inventory {%- endblock %} {% block nav -%} Add Re-index {%- endblock %} {% block content -%} {%- for field in fields %} {%- endfor %} {%- for card in cards %} {%- for field in card.fields %} {%- endfor %} {% endfor %}
Actions{{ field.label }}
Edit Delete {%- if field.kind == "bool" -%} {% if field.checked %} ✔ {% else %} ✘ {% endif %} {%- else -%} {{ field.value }} {%- endif -%}
{%- endblock %}