moviewyrm/bookwyrm/templates/500.html

13 lines
279 B
HTML
Raw Normal View History

{% extends 'layout.html' %}
2021-02-28 02:48:10 +00:00
{% load i18n %}
{% block title %}{% trans "Oops!" %}{% endblock %}
{% block content %}
2020-09-30 22:04:57 +00:00
<div class="block">
<h1 class="title">{% trans "Server Error" %}</h1>
<p>{% trans "Something went wrong! Sorry about that." %}</p>
</div>
{% endblock %}