show_error.html 670 B

12345678910111213141516171819202122232425262728293031
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>ECharts</title>
  6. <style>
  7. .error {
  8. background-color: #f90;
  9. display: block;
  10. width: 300px;
  11. min-height: 200px;
  12. z-index: 999;
  13. position: absolute;
  14. top: 50%;
  15. left: 50%;
  16. margin: -150px 0 0 -150px;
  17. padding: 20px;
  18. word-wrap: break-word;
  19. }
  20. .error_title {
  21. margin-top: -200px;
  22. background-color: lightcoral;
  23. }
  24. </style>
  25. </head>
  26. <body>
  27. {% import 'error.html' as _error %}
  28. {{_error.show(error_title,error)}}
  29. </body>
  30. </html>