{% extends 'admin/base.html.twig' %} {% block title %}Admin Dashboard{% endblock %} {% block body %}

Dashboard

{# ============================= #} {# USER + RESET CARD #} {# ============================= #}
User: {{ app.user.userIdentifier }}
Rollen: {{ app.user.roles|join(', ') }}

Reset des Systems

Unwiderruflicher Reset des gesamten Systems

{% for label, messages in app.flashes %} {% for message in messages %} {% endfor %} {% endfor %}
{# ============================= #} {# KNOWLEDGE INDEX STATUS CARD #} {# ============================= #} {% set percent = chunkLimit > 0 ? (chunkCount / chunkLimit * 100)|round(1) : 0 %}
Knowledge Index
Chunks: {{ chunkCount|number_format(0, ',', '.') }} / {{ chunkLimit|number_format(0, ',', '.') }}
{{ percent }}%
System ist für maximal 120.000 Chunks optimiert.
{% endblock %}