{% extends 'base.html' %} {% load static %} {% block title %}Error - Reports{% endblock %} {% block content %}

{{ error_title|default:"Error" }}

{% if details %}
Error Details:
    {% for detail in details %}
  • {{ detail }}
  • {% endfor %}
{% endif %}
{% endblock %}