No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

errors.html 469B

123456789101112131415161718
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>{{status_code}} {{status_str}}</title>
  5. </head>
  6. <body>
  7. {% if title is not none %}
  8. <h1>{{title}}</h1>
  9. {% else %}
  10. <h1>{{status_code}} {{status_str}}</h1>
  11. {% endif %}
  12. <ul>
  13. {% for k, v in errors.items() %}
  14. <li><strong>{{k}}</strong> : {{v}}</li>
  15. {% endfor %}
  16. </ul>
  17. </body>
  18. </html>