{% extends "base.html" %} {% block contents %}

{{ db.db_name }}

Home » {{ db.db_name }}

Top Tables by Size

{% autoescape false %} {{ tables_piechart_by_size }} {% endautoescape %}

Top Tables by Rows

{% autoescape false %} {{ tables_piechart_by_rows }} {% endautoescape %}

Tables ({{ tables.count() }})

{% for table in tables %} {% endfor %}
Name Uncompressed Size Compressed Size Compression Ratio
{{ table.table }} {{ table.uncompressed_size|filesizeformat(true) }} {{ table.compressed_size|filesizeformat(true) }} {% if table.uncompressed_size %} {{ "%.2f" % table.ratio }} {% else %} 1 {% endif %} : 1
{% endblock %}