mirror of
https://github.com/jupyterhub/jupyterhub.git
synced 2025-10-12 12:33:02 +00:00
29 lines
432 B
HTML
29 lines
432 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>
|
|
{{message}}
|
|
</p>
|
|
{% endif %}
|
|
{% if message_html %}
|
|
<p>
|
|
{{message_html | safe}}
|
|
</p>
|
|
{% endif %}
|
|
{% endblock error_detail %}
|
|
</div>
|
|
|
|
{% endblock %}
|