mirror of
https://github.com/pablorevilla-meshtastic/meshview.git
synced 2026-08-02 06:53:24 +02:00
20 lines
441 B
HTML
20 lines
441 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block body %}
|
|
<div class="container mt-4 text-center">
|
|
<h2>Error</h2>
|
|
<p>{{ error_message }}</p>
|
|
|
|
{% if error_details %}
|
|
<details>
|
|
<summary>Error Details</summary>
|
|
<code style="text-align: start;">
|
|
<pre>{{error_details}}</pre>
|
|
</code>
|
|
</details>
|
|
{% endif %}
|
|
|
|
<button class="btn btn-primary mt-3" onclick="window.history.back()">Go Back</button>
|
|
</div>
|
|
{% endblock %}
|