{% extends "base_table.html" %} {% block insert_tab_class %} active{% endblock %} {% block inner_content %}

Insert row into {{table }}

{% for column in columns %}
{% if column.data_type.lower() in ('text', 'blob') %} {% else %} {% endif %} {% if column.name in errors %}
{{ errors[column.name] }}
{% endif %}
{% if column.primary_key %} Primary key. {% endif %} {{ column.data_type|default('ANY') }}{% if not column.null %} NOT NULL{% endif %} {% if column.default %}(default {{ column.default }}){% endif %}
{% endfor %} Cancel
{% endblock %}