{% load oops_extras %} OOPS Report Summary {% if summary.count > 0 %}

{{durations.title}}

{% for duration, oopsids, pageid in durations.top_errors %} {% endfor %}
Duration OOPS ID Page
{{ duration|topvalueformat:durations.field_format }} {{oopsids|first}} {{pageid}}

{{stmt_counts.title}}

{% for count, oopsids, pageid in stmt_counts.top_errors %} {% endfor %}
Count OOPS ID Page
{{ count|topvalueformat:stmt_counts.field_format }} {{oopsids|first}} {{pageid}}

{{timeout_counts.title}}

{% for data in timeout_counts.time_out_counts %} {% endfor %}
Hard Soft Page
{{data.hard_timeouts_count}} {{data.soft_timeouts_count}} {{data.pageid}}
{% for section in summary.sections|slice:"3:" %}

{{section.title}}

{% for group in section.groups %}
{{group.count}} {{group.etype}}: {{group.evalue}}
{% if group.bug %} Bug: {{group.bug}} {% endif %}
{{group.formatted_http_method_count}} Robots: {{group.bot_count}} Local: {{group.local_referrer_count}}
    {% for data in group.top_urls %}
  • {{data.count}} {{data.escaped_url}} ({{data.pageid}})
  • {% for oops in data.errors|slice:":5" %} {{oops}} {% endfor %}
  • {% endfor %} {% if group.url_count > 5 %}
  • [{{group.url_count|sub:"5"}} more]
  • {% endif %}
{% endfor %}
{% endfor %}
{% else %}
No OOPS found
{% endif %}