{% extends "admin/layout.html" %} {% block title %}Log {{ device.hostname or device.device_fingerprint }} — Tuxflotte Admin{% endblock %} {% block admin_content %}

← Alle Geräte

Installations-/Aktions-Log: {{ device.hostname or device.device_fingerprint }}

Zuletzt gemeldet: {{ device.agent_last_checkin or "noch nie" }}

{% if not events %}

Für dieses Gerät liegen noch keine Einträge vor.

{% else %}
{% for event in events %} {% endfor %}
ZeitpunktQuelleEreignisDetail
{{ event.occurred_at }} {{ event.merkmal_name or "Installation" }} {% if event.event_type in ("applied", "selected", "activation_confirmed", "installation_started", "installation_completed") %} {{ event.event_type }} {% elif event.event_type in ("apply_failed", "remove_failed", "installation_failed") %} {{ event.event_type }} {% else %} {{ event.event_type }} {% endif %} {% if event.detail %}
anzeigen
{{ event.detail }}
{% else %}—{% endif %}
{% endif %} {% endblock %}