{% extends "base.html" %} {% block content %} {{ entity.title }} {% if errors %} {% for error in errors %} {{ error }} {% endfor %} {% endif %} {% for column in entity.columns %} {% if (column.editable is not defined or column.editable) and (column.roles_edit is not defined or session["user"]["role"] in column.roles_edit) %} {% if column.default_current_user and session["user"]["role"] != admin_role %} {% else %} {{ column.label }} {% if column.type == "textarea" %} {{ row.get(column.field, "") or "" }} {% elif column.type == "enum" %} Выберите значение {% for option in column.options %} {{ option }} {% endfor %} {% elif column.type == "ref" %} Не выбрано {% for option in refs.get(column.field, []) %} {{ option.label }} {% endfor %} {% elif column.type == "date" %} {% elif column.type == "int" %} {% elif column.type == "decimal" %} {% else %} {% endif %} {% endif %} {% endif %} {% endfor %} Сохранить Назад {% endblock %}