WIP: Add custom 403 and 404, but break a bit the permissions! To be fixed

This commit is contained in:
Skia
2015-12-07 17:23:52 +01:00
parent 6cc7851487
commit aa732a4ec0
4 changed files with 44 additions and 5 deletions

View File

@ -0,0 +1,8 @@
{% extends "core/base.html" %}
{% block content %}
<h3>403, Forbidden</h3>
{% endblock %}

View File

@ -0,0 +1,9 @@
{% extends "core/base.html" %}
{% block content %}
<h3>404, Not Found</h3>
{% endblock %}