{% extends "base.html" %} {% block title %}Statistiken - MYP Platform{% endblock %} {% block content %}

Statistiken

Übersicht über Systemleistung und Nutzungsstatistiken

Gesamte Jobs

{% if total_jobs is defined and total_jobs %}

{{ total_jobs }}

{% endif %}

Abgeschlossene Jobs

{% if completed_jobs is defined and completed_jobs %}

{{ completed_jobs }}

{% endif %}

Aktive Drucker

{% if active_printers is defined and active_printers %}

{{ active_printers }}

{% endif %}

Gesamte Druckzeit

{% if total_print_time is defined and total_print_time %}

{{ total_print_time }}

{% endif %}

Job-Status Verteilung

{% if job_status_data is defined and job_status_data and job_status_data|length > 0 %} {% endif %}

Drucker-Nutzung

{% if printer_usage_data is defined and printer_usage_data and printer_usage_data|length > 0 %} {% endif %}

Letzte Aktivitäten

{% if recent_activity is defined and recent_activity and recent_activity|length > 0 %} {% for activity in recent_activity %}

{{ activity.description }}

{{ activity.timestamp|format_datetime }}

{% endfor %} {% endif %}

Top Benutzer

{% if top_users is defined and top_users and top_users|length > 0 %} {% for user in top_users %}
#{{ loop.index }}

{{ user.name }}

{{ user.email }}

{{ user.job_count }}

Jobs

{% endfor %} {% endif %}

Systemleistung

Durchschnittliche Job-Dauer

{% if avg_job_duration is defined and avg_job_duration %}

{{ avg_job_duration }}

{% endif %}

Erfolgsrate

{% if success_rate is defined and success_rate %}

{{ success_rate }}%

{% endif %}

System-Verfügbarkeit

{% if system_uptime is defined and system_uptime %}

{{ system_uptime }}%

{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}