2015-12-13 09:34:12 +00:00
|
|
|
{% extends "base.html" %}
|
2023-02-20 17:28:56 +00:00
|
|
|
{% block title %}<title>HTTP 500 Error - {{ SITE_NAME }}</title>{% endblock %}
|
2015-12-13 09:34:12 +00:00
|
|
|
|
|
|
|
{% block dashboard_stat %}
|
2023-02-20 17:28:56 +00:00
|
|
|
<div class="content-header">
|
|
|
|
<div class="container-fluid">
|
|
|
|
<div class="row mb-2">
|
|
|
|
<div class="col-sm-6">
|
|
|
|
<h1 class="m-0 text-dark">HTTP 500 Error</h1>
|
|
|
|
</div>
|
|
|
|
<div class="col-sm-6">
|
|
|
|
<ol class="breadcrumb float-sm-right">
|
|
|
|
<li class="breadcrumb-item"><a href="{{ url_for('dashboard.dashboard') }}">Dashboard</a></li>
|
|
|
|
<li class="breadcrumb-item active">HTTP 500 Error</li>
|
|
|
|
</ol>
|
|
|
|
</div>
|
|
|
|
</div>
|
2023-02-18 16:04:14 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2015-12-13 09:34:12 +00:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
2023-02-20 17:28:56 +00:00
|
|
|
<section class="content">
|
|
|
|
<div class="error-page">
|
|
|
|
<h2 class="headline text-yellow">HTTP 500 Error</h2>
|
|
|
|
<div class="error-content">
|
|
|
|
<h3>
|
|
|
|
<i class="fa-solid fa-exclamation-triangle text-yellow"></i>
|
|
|
|
Oops! Something went wrong.
|
|
|
|
</h3>
|
|
|
|
<p>
|
|
|
|
Try again later.
|
|
|
|
You may <a href="{{ url_for('dashboard.dashboard') }}">return to the dashboard</a>.
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</section>
|
2023-02-18 16:04:14 +00:00
|
|
|
{% endblock %}
|