{% extends 'layout.html' %} {% block title %}{{ collectionName }}{% endblock %} {% block head %} {% if editorTheme != "default" %} {% endif %} {% endblock %} {% block breadcrumb %}
  • Home /
  • {{ dbName }} /
  • {{ collectionName }}
  • {% endblock %} {% block content %} {% if !settings.read_only %}

    New Document

    {% endif %}

    {% if documents.length == 0 %}

    No documents found.

    {% else %} {% if collectionName != 'system.indexes' %} {% endif %} {% if pagination %} {% endif %}
    {% for column in columns %} {% endfor %} {% for document in docs %} {% for column in columns %} {% endfor %} {% if !settings.read_only %} {% endif %} {% endfor %}
    {{column}}Del
    {% if document[column] == "" %} {{column}} is empty for {{document["_id"]| to_display}} {% else %} {% if !document[column] %} {% if column|is_embeddedDocumentNotation %} {{edKey(document, column)}} {% else %} {% endif %} {% else %} {{document[column] | to_display | safe}} {% endif %} {% endif %}
    {% if pagination %} {% endif %} {% endif %} {# # Not very useful, since it doesn't show correct index names # Could use db.coll.getIndexes(), but that is an extra query on every collection page

    Indexes

    {% if stats.nindexes == 0 %}

    No indexes found.

    {% else %} {% for size in stats.indexSizes %} {% endfor %}
    {{ loop.key }} {{ size }} bytes
    {% endif %} #}
    {% if !settings.read_only %}

    Rename Collection

    {{ dbName }} .
    {% endif %}

    Export

    Standard

    --jsonArray

    {% if !settings.read_only %}

    Delete Collection

    {% endif %} {% endblock %} {% block sidebar %} {% endblock %}