{% extends "base.html" %} {% block title %}Databases{% endblock %} {% block content %}
{{ "{:,}".format(database.total_rows) }} rows in {{ database.tables_count }} table{% if database.tables_count != 1 %}s{% endif %}
{% for table, count in database.tables_truncated %}{{ table }}{% if not loop.last %}, {% endif %}{% endfor %}{% if database.tables_more %}, ...{% endif %}
{% endfor %} {% endblock %}