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

{{ schema }}.{{ table }}

{{ table_informations['description'] if table_informations['description'] else 'Pas de description courte' }}

Description longue
{{ table_informations['description_long'] if table_informations['description_long'] else 'Pas de description longue' }}

Liste des champs

{% for column in columns %} {% endfor %}
Champ Type Description
{{ column['column_name'] }} {{ column['data_type'] }} {{ column['description'] }}

🗓️ Mise à jour : {% for month in table_informations['update_months'] %} {{ month.name }} {% endfor %}

{% endblock %}