{% 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 %} {%- if field.kind == "bool" -%} {%- elif field.kind == "tags" or field.kind == "free_tags" -%} {%- else -%} {%- endif -%} {%- endfor %} {% endfor %}
Actions{{ field.label }}
Edit Delete {% if field.checked %} ✔ {% else %} ✘ {% endif %} {% for tag in field.tags %} {{ tag }} {% endfor %} {{ field.value }}
{%- endblock %}