123456789101112131415161718192021222324252627 |
- {% extends "base/layout.html" %} {% block title %}系统错误{% endblock %} {% block page_head_plugins %}
- {% endblock %} {% block page_content %}
- <div class="app-body-header h-50px" id="breadcrumb_header">
- <h3>系统错误</h3>
- <ol class="breadcrumb breadcrumb-dot text-muted fs-6 fw-semibold ms-5">
- <li class="breadcrumb-item"><a href="{{ url_for('project.index') }}" class="">首页</a></li>
- <li class="breadcrumb-item text-muted">系统错误</li>
- </ol>
- </div>
- <div class="container p-5 fw-bold">
- <div class="alert alert-danger">
- <h4 class="alert-heading">发生错误!</h4>
- <p>系统处理您的请求时发生了错误。</p>
- {% if error_message %}
- <hr>
- <p class="mb-0">错误详情: <span class="text-danger">{{ error_message }}</span></p>
- {% endif %}
- </div>
- <a href="{{ url_for('project.index') }}" class="btn btn-primary mt-5">返回首页</a>
- </div>
- {% endblock %} {% block page_scripts %}
- <script>
- ChangeHeadMenu('#{{page_active}}_menu')
- </script>
- {% endblock %}
|