{% extends "admin/base_site.html" %} {% load humanize i18n %} {% block breadcrumbs %} {% endblock %} {% block content %}
{% if log %} {% for line in log %} {% endfor %}
{% trans 'Time' %} {% trans 'URL' %} {% trans 'Type' %} {% trans 'Result' %}
{{ line.datetime|naturaltime }} {% if line.method == 'GET' %} {{ line.path }} {% else %} {{ line.path }} {% endif %} {% if line.method == 'GET' %} {% trans 'Read' %} {% elif line.method == 'POST' %} {% trans 'Write' %} {% else %} {% trans 'Other' %} {% endif %} ({{ line.method }}) {% if line.code < 200 %} {% trans 'Informational' %} {% elif line.code < 300 %} {% trans 'Success' %} {% elif line.code < 400 %} {% trans 'Redirection' %} {% elif line.code < 500 %} {% trans 'Client error' %} {% elif line.code < 600 %} {% trans 'Server error' %} {% else %} {% trans 'Non-standard' %} {% endif %} ({{ line.code }})
{% endif %} {% endblock %}