{% extends 'layout.html' %} {% block title %}{{ schema }}.{{ table }}{% endblock %} {% block content %}

{{ schema }}.{{ table }}

{{ table_informations['description'] if table_informations['description'] else _('No short description') }}

{{ _('Long description') }}
{{ table_informations['description_long'] if table_informations['description_long'] else _('No long description') }}

{{ _('Field list') }}

{% for column in columns %} {% endfor %}
{{ _('Field') }} {{ _('Type') }} {{ _('Description') }}
{{ column['column_name'] }} {{ column['data_type'] }} {{ column['description'] }}

🗓️ {{ _('Update:') }} {% for month in table_informations['update_months'] %} {{ month.name }} {% endfor %}

{% endblock %}