PGAdmin Site Таблица: {{ table_name }} / Добавление записи
{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %}
{{ message }}
{% endfor %} {% endif %} {% endwith %}

Добавление новой записи в таблицу {{ table_name }}

{% for column in columns %}
{% if column.type|string == 'BOOLEAN' or column.type|string == 'boolean' %} {% elif column.type|string == 'TEXT' or column.type|string == 'text' %} {% else %} {% endif %} Тип: {{ column.type }} {% if column.nullable %}(может быть NULL){% else %}(NOT NULL){% endif %} {% if column.default %}Default: {{ column.default }}{% endif %}
{% endfor %}