mirror of
https://github.com/bugsink/bugsink.git
synced 2025-12-30 09:50:11 -06:00
22 lines
609 B
HTML
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 %}
|