{% extends "/base.html" %} {% block title %} UI Tables {% endblock %} {% block stylesheets %} {% endblock stylesheets %} {% block content %} {% with messages = get_flashed_messages() %} {% if messages %}
{{ messages }}
{% endif %} {% endwith %}
Data Source List
{% for item in data.items %} {% endfor %}
# Connection Name Host Port User Name Table Name Schema Status
{{ item.id }} {{ item.connection_name }} {{ item.hostname }} {{ item.port }} {{ item.username }} {{ item.tablename }} {{ item.schemaname }}
{% if data.has_prev %} Previous {% endif %} {% if data.has_next %} Next {% endif %}
{% endblock content %} {% block javascripts %} {% endblock javascripts %}