23 lines
470 B
HTML
23 lines
470 B
HTML
{% load i18n %}
|
|
|
|
<style>
|
|
.pb-exception {
|
|
font-family: monospace;
|
|
overflow-x: scroll;
|
|
}
|
|
</style>
|
|
|
|
<header class="pf-c-login__main-header">
|
|
<h1 class="pf-c-title pf-m-3xl">
|
|
{% trans 'Whoops!' %}
|
|
</h1>
|
|
</header>
|
|
<div class="pf-c-login__main-body">
|
|
<h3>
|
|
{% trans 'Something went wrong! Please try again later.' %}
|
|
</h3>
|
|
{% if debug %}
|
|
<pre class="pb-exception">{{ tb }}{{ error }}</pre>
|
|
{% endif %}
|
|
</div>
|