{# Flask partial: table columns list #}

{{ table_name }}

{% if not columns %}

No columns

{% else %} {% for col in columns %} {% endfor %}
Name Type Not Null Default PK
{{ col.name or '' }} {{ col.type or '' }} {{ 'Yes' if col.notnull else 'No' }} {{ col.dflt_value if col.dflt_value is not none else '' }} {{ 'Yes' if col.pk else 'No' }}
{% endif %}