This commit is contained in:
Aaron Kimbre 2022-02-11 20:54:11 -06:00
parent 8aec4a45d2
commit d3c8c5d77b

View File

@ -0,0 +1,18 @@
{% 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 %}