{% extends "wcs/backoffice/base.html" %} {% load i18n %} {% block appbar-title %}{{ error.summary }}{% endblock %} {% block content %}
{% 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.exception_class or error.exception_message %}
  • {% trans "Error message:" %} {{ error.exception_class }}: {{ error.exception_message }}
  • {% endif %}
{% for tab in tabs %} {% endfor %}
{% endblock %}