Files
jupyterhub/share/jupyter/templates/error.html
MinRK 714770d499 reorg handlers a bit
make room for API handlers
2014-09-12 12:09:26 -07:00

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 %}