{% extends "base.html" %} {% block title %}Log {{ device.hostname or device.device_fingerprint }} — Tuxflotte{% endblock %} {% block content %}

← Geräteliste

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

{% if not events %}

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

{% else %}
{% for event in events %} {% endfor %}
ZeitpunktMerkmalEreignisDetail
{{ event.occurred_at }} {{ event.merkmal_name }} {% if event.event_type in ("applied", "selected") %} {{ event.event_type }} {% elif event.event_type in ("apply_failed", "remove_failed") %} {{ event.event_type }} {% else %} {{ event.event_type }} {% endif %} {% if event.detail %}{{ event.detail }}{% else %}—{% endif %}
{% endif %} {% endblock %}