error.html 1.0 KB

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