{# templates/file_access.html #} {% extends 'base.html' %} {# page title #} {% block title %}Dateizugriffe{% endblock %} {# page content #} {% block content %}

Auswertung-Dateizugriffe

{% for top20_item in top20 %}
Top 20 Dateizugriffe ({{ top20_item['category'] }}) +
{% for row in top20_item['files'] %} {% else %} {% endfor %}
Access Count File Path
{{ row.access_count }} {{ row.rel_path }}
No data available for the selected timeframe.
{% endfor %}
{% endblock %} {% block scripts %} {% endblock %}