NexusDash-izebra/app/templates/status_codes/500.html.j2
Aaron Kimbre d3c8c5d77b template
2022-02-11 20:54:11 -06:00

19 lines
391 B
Django/Jinja

{% extends 'base.html.j2' %}
{% block title %}ERROR{% endblock %}
{% block content_before %}
ERROR - {{ config.APP_NAME }}
{% endblock %}
{% block content %}
{% if current_user.gm_level == 9 %}
<code>
{{ exception }}
</code>
{% else %}
<h2 class="text-center">An Error has Occurred!!!</h2>
<div>Please Report this to an Admin</div>
{% endif %}
{% endblock %}