{% extends "wcs/backoffice.html" %} {% load i18n %} {% block appbar-title %}{{ error.summary }}{% endblock %} {% block appbar-actions %} {% include "wcs/backoffice/includes/documentation-editor-link.html" %} {% endblock %} {% block body %} {% include "wcs/backoffice/includes/documentation.html" with element=error object=error %}
{% for tab in tabs %} {% endfor %}
  • {% trans "First occurence:" %} {{ error.first_occurence_timestamp }}
  • {% trans "Latest occurence:" %} {{ error.latest_occurence_timestamp }}
  • {% trans "Count:" %} {{ error.formatted_occurences_count }}
  • {% if formdef %}
  • {{ formdef.verbose_name }}{% trans ":" %} {{ formdef.name }} ({% trans "inspector" %})
  • {% endif %} {% if workflow %}
  • {% trans "Workflow:" %} {{ workflow.name }} ({% trans "inspector" %}) {% if status %} {% endif %}
  • {% endif %} {% if formdata %}
  • {% trans "Data:" %} {{ formdata.get_display_name }} ({% trans "inspector" %})
  • {% endif %} {% if error.expression or error.expression_type %}
  • {{ view.error_expression_type_label }}{% trans ":" %} {{ error.expression }}
  • {% endif %} {% if error.context %}
    • {% for frame in view.get_context_frames %}
    • {% if frame.source %}{{ frame.source.label }}{% endif %}
        {% for frame_context in frame.get_frame_lines %}
      • {{ frame_context.label }}{% trans ":" %} {{ frame_context.value }}
      • {% endfor %}
    • {% endfor %}
  • {% endif %} {% if error.exception_class or error.exception_message %}
  • {% trans "Error message:" %} {{ error.exception_class }}: {{ error.exception_message }}
  • {% endif %}
{% for tab in tabs %} {% endfor %}
{% endblock %} {% block sidebar-content %}

{% trans "Actions" %}

{% if error.deleted_timestamp %}

{% trans "This error has already been marked for deletion." %}

{% endif %} {% endblock %}