{% extends "base.html" %} {% block title %}Logs des watchdogs — GMAO Collège{% endblock %} {% block content %}

Logs des watchdogs

API JSON
{% for log in pagination.items %} {% else %} {% endfor %}
Date Watchdog Niveau Message
{{ log.created_at.strftime('%d/%m/%Y %H:%M:%S') if log.created_at else '-' }} {{ log.watchdog_name }} {% if log.level == 'error' %} Error {% elif log.level == 'warning' %} Warning {% else %} Info {% endif %}
{{ log.message }}
Aucun log
{% if pagination.pages > 1 %}

Page {{ pagination.page }} / {{ pagination.pages }}

{% endif %} {% endblock %}