mirror of
https://github.com/jupyterhub/jupyterhub.git
synced 2025-10-12 20:43:02 +00:00
23 lines
435 B
HTML
23 lines
435 B
HTML
{% extends "page.html" %}
|
|
|
|
{% block login_widget %}
|
|
{% endblock %}
|
|
|
|
{% block main %}
|
|
|
|
<div class="error">
|
|
{% block h1_error %}
|
|
<h1>{{status_code}} : {{status_message}}</h1>
|
|
{% endblock h1_error %}
|
|
{% block error_detail %}
|
|
{% if message %}
|
|
<p>The error was:</p>
|
|
<div class="traceback-wrapper">
|
|
<pre class="traceback">{{message}}</pre>
|
|
</div>
|
|
{% endif %}
|
|
{% endblock %}
|
|
</div>
|
|
|
|
{% endblock %}
|