{% extends "base.html" %} {% block content %}

{{ entity.title }}

Раздел построен автоматически по настройкам из domain.py.

{% if can_edit_entity %} Добавить {% endif %}
{% if search %} Сброс {% endif %}
{% for column in entity.columns %} {% endfor %} {% if can_edit_entity %} {% endif %} {% for row in rows %} {% for column in entity.columns %} {% endfor %} {% if can_edit_entity %} {% endif %} {% else %} {% endfor %}
{{ column.label }}Действия
{% if column.type == "ref" %} {{ row.get(column.field ~ "__label") or "—" }} {% elif column.type == "date" and row.get(column.field ~ "__text") %} {{ row.get(column.field ~ "__text") }} {% else %} {{ row.get(column.field) if row.get(column.field) is not none else "—" }} {% endif %} Изменить
Записей пока нет.
{% endblock %}