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

Browse mode

Explore the local index

{% if total_docs == 1 %} 1 source document is represented in the index. {% else %} {{ total_docs }} source documents are represented in the index. {% endif %}

{% if total_docs == 0 %}

No documents indexed yet

Upload documents or run alcove seed-demo, then return here to browse the corpus.

{% else %}

Recent Documents

{% for doc in stats.recent %}
{% if doc.id %} {{ doc.label | e }} {% else %} {{ doc.label | e }} {% endif %} {{ doc.collection | e }} · {{ doc.chunk_count }} chunk{% if doc.chunk_count != 1 %}s{% endif %}
{% endfor %}

Collections

{% for collection in stats.collections %} {{ collection.name | e }} {{ collection.doc_count }} {% endfor %}
{% if stats.filetypes %}

File Types

{% for filetype in stats.filetypes %} {{ filetype.ext | e }} {{ filetype.doc_count }} {% endfor %}
{% endif %} {% if stats.years %}

Years

{% for year in stats.years %} {{ year.year | e }} {{ year.doc_count }} {% endfor %}
{% endif %} {% if stats.authors %}

Authors

{% for author in stats.authors %} {{ author.name | e }} {{ author.doc_count }} {% endfor %}
{% endif %}
{% endif %} ← Back to search {% endblock %}