mirror of
https://github.com/bugsink/bugsink.git
synced 2026-04-29 19:40:15 -05:00
719fcae322
when people run into ALLOWED_HOSTS troubles, they should get info on-screen ASAP
13 lines
239 B
HTML
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 %}
|