{% if is_paginated %}
{% endif %}
{% trans "Date / heure" %} |
{% trans "Serveur" %} |
{% trans "Action" %} |
{% trans "Durée totale" %} |
{% trans "Status" %} |
{% for log in object_list %}
{% ifchanged %}{{ log.timestamp }}{% endifchanged %} |
{% if log.server %}
{{ log.server.hostname }} |
{% else %}
|
{% endif %}
{{ log.action }} |
{{ log.duration|floatformat:2 }} {% trans 'secondes' %} |
{% if log.success %}
{% trans 'OK'%} |
|
{% else %}
{% trans 'Erreur'%} |
|
{% endif %}
{% trans 'Voir les détails...' %} |
|
|
{% endfor %}
{% if is_paginated %}
{% endif %}