{% extends 'layout.html' %} {% block title %}{{ _('Schemas') }}{% endblock %} {% block content %}

{{ config['DATABASE_TITLE'] }}

{{ _('Data catalog') }}

{{ _('Schema list') }}

{% for schema in schemas %}

{{ schema['schema_name'] }} {{ schema['schema_description'] }}

{% for table in schema['tables'] %} {{ table[0] }}

{{ table[1] if table[1] else "Pas de description" }}

{% endfor %}
{% endfor %}
{% endblock %}