16 lines
328 B
HTML
16 lines
328 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block content %}
|
|
<div class="">
|
|
<h2>404 error</h2>
|
|
{% if request.user.is_staff%}
|
|
{% if reason %}
|
|
{{ reason }}
|
|
{% endif %}
|
|
|
|
{% if resolved %}
|
|
<h3>{{ resolved }}</h3>
|
|
{% endif %}
|
|
{% endif %}
|
|
</div>
|
|
{% endblock %} |