{% extends 'psu_base.html' %} {% load base_taglib %} {%block title%}{%app_name%} - Error List{%endblock%} {% block pagecontent %}
    Search Hints {%fa fa-angle-double-down onclick="$(this).parent().addClass('hidden');$('#search-hints').removeClass('hidden');"%}

Unexpected Errors

{%sortable_th column="date_created" heading="Date"%} {%sortable_th column="status"%} {% for ee in app_errors%} {%empty%} {% endfor %}
User Technical Details Error
{{ee.error_cd.banner_date}}
{{ee.error_cd.time}}
{{ee.error_cd.humanized}}
{{ee.sso_user}}
{%if ee.impersonated_user %} Impersonating: {{ee.impersonated_user}}
{%endif%} {%if ee.proxied_user %} Proxying: {{ee.proxied_user}}
{%endif%}
Path: {{ee.path}}
Parameters:
{{ee.parameters_html}}

Browser: {{ee.browser|default:'Unknown'}}
Raised From: {{ee.code_detail}}
{%if ee.stacktrace%}
{{ee.stacktrace_html|safe}}
{%endif%}
{%if ee.error_friendly%}
{%fa fa-bullhorn fa-fw title="Posted Error"%} {{ee.error_friendly|safe}}
{%endif%} {%if ee.error_system%}
{%fa fa-laptop fa-fw title="System Error"%} {{ee.error_system|safe}}
{%endif%} {%if ee.debug_info%}
{%fa fa-bug fa-fw title="Debug Info"%} {{ee.debug_info}}
{%endif%}
{%select_menu error_id=ee.id onchange="set_status($(this));" value=ee.status options=status_options %}

{%if error_filter%} {%fa fa-filter%} No errors matching: {{error_filter}} {%else%} {%fa fa-smile-o%} All errors have been reviewed! {%endif%}
{%pagination app_errors%} {% endblock %}