{% extends "base.html" %} {% block title %}Logs{% endblock %} {% block content %}

Ring-Logs

{% with messages = get_flashed_messages(with_categories=true) %} {% for c, m in messages %}
{{ m }}
{% endfor %} {% endwith %}
{% for c in categories %} {{ c }} {% endfor %}
{% if entries %} {% for e in entries %} {% endfor %}
Zeitstempel Level Nachricht
{{ e.ts }} {{ e.level }} {{ e.message }} {% if e.details %} ▶ Details
{{ e.details }}
{% endif %}
{% else %}

Keine Einträge in Kategorie „{{ cat }}".

{% endif %}
{{ entries|length }} Einträge (max. 500 pro Kategorie)
{% endblock %}