Files
bugsink/templates/500.html
Fabien LEFEBVRE (d1ceward) 9cec248ad8 Add dark theme
2025-06-16 15:37:37 +02:00

22 lines
609 B
HTML

{% extends "bare_base.html" %}
{% block title %}500 Server Error{% endblock %}
{% block content %}
<div class="m-4">
<h1 class="text-4xl mt-4 font-bold">500 Server Error</h1>
<div class="pt-2 font-bold">
{{ exception }}
</div>
<div class="pt-6">
You will find more information in:
<ul class="list-disc pt-4 pl-4">
<li>the server logs (stdout of your Docker, or in journalctl)</li>
<li>if you're <a href="https://www.bugsink.com/docs/dogfooding/" class="text-cyan-500 dark:text-cyan-300 font-bold">dogfooding Bugsink</a>, in Bugsink itself</li>
</ul>
</div>
{% endblock %}