Add a copy of 500.html that matches our template blocks
The builtin `pinax_theme_bootstrap` uses `body` instead of `content`.
This commit is contained in:
parent
c15c0bd782
commit
2680b25f2c
1 changed files with 12 additions and 0 deletions
12
pinaxcon/templates/500.html
Normal file
12
pinaxcon/templates/500.html
Normal file
|
@ -0,0 +1,12 @@
|
|||
{% extends "site_base.html" %}
|
||||
|
||||
{% load i18n %}
|
||||
|
||||
{% block head_title %}{% trans "Server Error" %}{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<header class="jumbotron subhead" id="overview">
|
||||
<h1>{% trans "Something went wrong" %}</h1>
|
||||
<p class="lead">{% trans "We're sorry but a server error has occurred. We've been notified and will look into it as soon as possible." %}</p>
|
||||
</header>
|
||||
{% endblock %}
|
Loading…
Reference in a new issue