{% extends "base.html" %} {% block title %}Dashboard{% endblock %} {% block content %}

HSEQ Kennisbank

Centraal documentbeheer voor HSEQ compliance

{% if stats %}
{{ stats.total_documents }} Documenten
{{ stats.total_pages }} Pagina's
{{ stats.total_categories }} Categorieën
{{ stats.total_size }} Totale grootte
{% endif %} {% if categories %}
Filter:
Alle {% for cat in categories %} {{ cat.category }} ({{ cat.count }}) {% endfor %}
{% endif %} {% if documents and documents.results %}
{% for doc in documents.results %}
{{ doc.category or 'Ongecategoriseerd' }} {% if doc.pages %}{{ doc.pages }} pg{% endif %}

{{ doc.title or doc.filename }}

{% if doc.preview %}

{{ doc.preview[:150] }}…

{% endif %}
{% endfor %}
{% if documents.pages > 1 %} {% endif %} {% else %}

Geen documenten gevonden{% if category %} in categorie "{{ category }}"{% endif %}.

Toon alle documenten
{% endif %} {% endblock %}