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