{% load static from staticfiles %}{% load i18n %}{% load l10n %}{% load log4django %} {{ PAGE_TITLE }}
{% if records.object_list %} {% pagination records %} {% endif %} {% for record in records %} {% empty %} {% endfor %}
{% trans "Level" %} {% trans "App" %} {% trans "Asctime" %} {% trans "Logger" %} {% trans "Message" %}  
{{ record.get_level_display }} {{ record.app }} {{ record.timestamp }} {{ record.loggerName }} {{ record.message|remove_newlines|wordwrap:150|linebreaksbr }} {% if record.exception_message or record.exception_traceback %} {% endif %}
{% trans "Filename" %} {% trans "Linenumber" %} {% trans "Thread" %}
{% if record.fileName %} {{ record.fileName }} {% else %} {% endif %} {% if record.lineNumber != None %} {{ record.lineNumber }} {% else %} {% endif %} {{ record.thread }}
{% if record.has_extra %}

{% trans "Extra data" %}

{% extra_data record %}
{% endif %} {% if record.exception_message or record.exception_traceback %}

{% trans "Exception" %}: {{ record.exception_message }}

{{ record.exception_traceback }}
{% endif %}
{% trans "No records found." %}
{% if records.object_list %} {% pagination records %} {% endif %}