{% extends "base.html" %} {% from "partials/_macros.html" import empty_row %} {% block content %} {% if error %}
Could not list collections: {{ error }}
{% else %} {% for c in collections %} {% else %} {{ empty_row(5, "No collections.") }} {% endfor %}
Name Documents Data size Index size Options
{{ c.name }} {{ "{:,}".format(c.count) }} {{ c.dataSize | humanize_bytes }} {{ c.indexSize | humanize_bytes }} {% if c.options.capped %} capped {% endif %}
{% endif %} {% endblock %}