No documents in this collection.
{% extends "base.html" %}
{% block title %}{{ collection }} - KenobiX Explorer{% endblock %}
{% block breadcrumb %}
{% endblock %}
{% block content %}
{{ "{:,}".format(total) }} documents
{% if indexed %}
· Indexed:
{% for field in indexed %}
{{ field }}
{% endfor %}
{% endif %}
No documents in this collection.{{ collection }}
{% for col in columns %}
{% for doc in documents %}
{{ col.display_name }}
{% if col.is_indexed %}*{% endif %}
{% endfor %}
{% for col in columns %}
{% set cell = doc.get(col.name) | format_cell %}
{% endfor %}
{% if cell.full %}
{{ cell.display }}
{% else %}
{{ cell.display }}
{% endif %}
{% endfor %}
View