index.twig 650 B

123456789101112131415161718192021222324
  1. {% if has_tables %}
  2. <div id="tableslistcontainer">
  3. {{ list_navigator_html|raw }}
  4. {{ table_list_html|raw }}
  5. {{ list_navigator_html|raw }}
  6. </div>
  7. <hr>
  8. <p class="print_ignore">
  9. <a href="#" id="printView">
  10. {{ get_icon('b_print', 'Print'|trans, true) }}
  11. </a>
  12. <a href="{{ url('/database/data-dictionary', {'db': database, 'goto': url('/database/structure')}) }}" target="print_view">
  13. {{ get_icon('b_tblanalyse', 'Data dictionary'|trans, true) }}
  14. </a>
  15. </p>
  16. {% else %}
  17. {{ 'No tables found in database.'|trans|notice }}
  18. {% endif %}
  19. {% if not is_system_schema %}
  20. {{ create_table_html|raw }}
  21. {% endif %}