{% extends "base.html" %} {% block title %}Logs QuickWin #{{ run.id }}{% endblock %} {% block content %}
S{{ '%02d'|format(run.week_number) }} {{ run.year }} — {{ total_logs }} entrée(s)
| Date | Niveau | Étape | Hostname | Message | Par |
|---|---|---|---|---|---|
| {{ l.created_at.strftime('%d/%m %H:%M:%S') }} | {% if l.level == 'success' %}OK {% elif l.level == 'info' %}INFO {% elif l.level == 'warn' %}WARN {% elif l.level == 'error' %}ERR {% else %}{{ l.level }}{% endif %} | {{ l.step }} | {{ l.hostname or '' }} |
{{ l.message }}
{% if l.detail %}
{{ l.detail }}
{% endif %}
|
{{ l.created_by or '' }} |
| Aucun log{% if filters.level or filters.step or filters.hostname %} pour ces filtres{% endif %} | |||||