diff --git a/app/templates/status_codes/500.html.j2 b/app/templates/status_codes/500.html.j2 new file mode 100644 index 0000000..544646b --- /dev/null +++ b/app/templates/status_codes/500.html.j2 @@ -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 %} + + {{ exception }} + + {% else %} +

An Error has Occurred!!!

+
Please Report this to an Admin
+ {% endif %} +{% endblock %}