500.html 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {% load static %}
  2. <!DOCTYPE html>
  3. <html lang="en">
  4. <head>
  5. <title>Server Error</title>
  6. <link rel="stylesheet" href="{% static 'bootstrap-3.3.7-dist/css/bootstrap.min.css' %}">
  7. <link rel="stylesheet" href="{% static 'font-awesome-4.7.0/css/font-awesome.min.css' %}">
  8. <meta charset="UTF-8">
  9. </head>
  10. <body>
  11. <div class="container-fluid">
  12. <div class="row">
  13. <div class="col-md-6 col-md-offset-3">
  14. <div class="panel panel-danger" style="margin-top: 200px">
  15. <div class="panel-heading">
  16. <strong>
  17. <i class="fa fa-warning"></i>
  18. Server Error
  19. </strong>
  20. </div>
  21. <div class="panel-body">
  22. {% block message %}
  23. <p>
  24. There was a problem with your request. Please contact an administrator.
  25. </p>
  26. {% endblock %}
  27. <hr />
  28. <p>
  29. The complete exception is provided below:
  30. </p>
  31. <pre><strong>{{ exception }}</strong><br />
  32. {{ error }}</pre>
  33. <p>
  34. If further assistance is required, please post to the <a href="https://groups.google.com/forum/#!forum/netbox-discuss">NetBox mailing list</a>.
  35. </p>
  36. <div class="text-right">
  37. <a href="{% url 'home' %}" class="btn btn-primary">Home Page</a>
  38. </div>
  39. </div>
  40. </div>
  41. </div>
  42. </div>
  43. </div>
  44. </body>
  45. </html>