Fixes error pages
This commit is contained in:
parent
e86f160c53
commit
28f07f7729
5 changed files with 2 additions and 16 deletions
12
bookwyrm/templates/500.html
Normal file
12
bookwyrm/templates/500.html
Normal file
|
@ -0,0 +1,12 @@
|
|||
{% extends 'layout.html' %}
|
||||
{% load i18n %}
|
||||
|
||||
{% block title %}{% trans "Oops!" %}{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<div class="block">
|
||||
<h1 class="title">{% trans "Server Error" %}</h1>
|
||||
<p>{% trans "Something went wrong! Sorry about that." %}</p>
|
||||
</div>
|
||||
{% endblock %}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue