{% extends "base.html" %} {% block title %}{{ model_name }} — KORM Admin{% endblock %} {% block content %}

{{ model_name }}

{{ total }} record(s) Create
{% if rows %}
{% for col in display_columns %} {% endfor %} {% for row in rows %} {% for col in display_columns %} {% endfor %} {% endfor %}
{{ col }}Actions
{% set val = row.get(col) %} {% if val is none %} {% elif val is boolean %} {{ 'true' if val else 'false' }} {% elif val is mapping or val is sequence and val is not string %} {{ val|truncate(60) }} {% elif val is string and val|length > 60 %} {{ val[:60] }}… {% else %} {{ val }} {% endif %}
View Edit
{% else %}

No records found.

{% if search %}

Try a different search term or clear filters.

{% else %}

Create the first {{ model_name }} record.

{% endif %}
{% endif %}
{% endblock %}