Fixes error pages

This commit is contained in:
Mouse Reeve
2021-03-29 18:47:21 -07:00
parent e86f160c53
commit 28f07f7729
5 changed files with 2 additions and 16 deletions

View File

@ -0,0 +1,11 @@
{% extends 'layout.html' %}
{% load i18n %}
{% block title %}{% trans "Not Found" %}{% endblock %}
{% block content %}
<div class="block">
<h1 class="title">{% trans "Not Found" %}</h1>
<p>{% trans "The page you requested doesn't seem to exist!" %}</p>
</div>
{% endblock %}