{% extends "base.html" %} {% import 'macro_schema_rel.html' as macro_schema_rel %} {% import 'macro_instances.html' as macro_instances %} {% import 'macro_message.html' as macro_message %} {% block main_content %}
{% for table in SESSION['schemas_to_tables_to_atts'][REQUEST_VARS['current_schema']] %}
{{ macro_schema_rel.schema_relationnel(table, SESSION['schemas_to_tables_to_atts'][REQUEST_VARS['current_schema']][table]) }}
{% endfor %}
{{ macro_instances.tab_instances(REQUEST_VARS['query_result'].result_attributes, REQUEST_VARS['query_result'].result_instances) }}
{% endif %} {% endblock %}