Files
bugsink/templates/400.html
Klaas van Schelven 719fcae322 Friendly 400 page that shows the error, even when DEBUG=False
when people run into ALLOWED_HOSTS troubles, they should get info on-screen ASAP
2024-11-28 12:43:14 +01:00

13 lines
239 B
HTML

{% extends "bare_base.html" %}
{% block title %}400 Server Error{% endblock %}
{% block content %}
<div class="m-4">
<h1 class="text-4xl mt-4 font-bold">400 Server Error</h1>
<div class="pt-2">
{{ exception }}
</div>
{% endblock %}