Add custom error handlers
parent
ee02fab3a3
commit
17a71ddfb6
@ -0,0 +1,8 @@
|
||||
{% extends 'front_base.html' %}
|
||||
|
||||
{% block title %} - Bad Request{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
Your browser sent an incorrect request.
|
||||
{% endblock %}
|
||||
|
@ -0,0 +1,8 @@
|
||||
{% extends 'front_base.html' %}
|
||||
|
||||
{% block title %} - Forbidden{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
You are not allowed to access the requested resource.
|
||||
{% endblock %}
|
||||
|
@ -0,0 +1,8 @@
|
||||
{% extends 'front_base.html' %}
|
||||
|
||||
{% block title %} - Not Found{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
The requested resource cannot be found.
|
||||
{% endblock %}
|
||||
|
@ -0,0 +1,8 @@
|
||||
{% extends 'front_base.html' %}
|
||||
|
||||
{% block title %} - Internal Server Error{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
There was an error processing your request. The admins have been notified.
|
||||
{% endblock %}
|
||||
|
Loading…
Reference in New Issue