{% extends "base.html" %} {% block title %}{{ db_name }} - KenobiX Explorer{% endblock %} {% block content %}

Database Overview

{{ db_path }}

Collections
{{ collections | length }}
Total Documents
{{ "{:,}".format(total_docs) }}
Database Size
{% if db_size < 1024 %}{{ db_size }} B{% elif db_size < 1048576 %}{{ "%.1f"|format(db_size / 1024) }} KB{% else %}{{ "%.2f"|format(db_size / 1048576) }} MB{% endif %}

Collections

{% if collections %}
{% for coll in collections %} {% endfor %}
Name Documents Indexed Fields
{{ coll.name }} {{ "{:,}".format(coll.count) }} {% if coll.indexed %} {% for field in coll.indexed %} {{ field }} {% endfor %} {% else %} none {% endif %} Browse
{% else %}

No collections found in this database.

{% endif %} {% endblock %}