| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- {% load static %}
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <title>Server Error</title>
- <link rel="stylesheet" href="{% static 'bootstrap-3.3.7-dist/css/bootstrap.min.css' %}">
- <link rel="stylesheet" href="{% static 'font-awesome-4.7.0/css/font-awesome.min.css' %}">
- <meta charset="UTF-8">
- </head>
- <body>
- <div class="container-fluid">
- <div class="row">
- <div class="col-md-6 col-md-offset-3">
- <div class="panel panel-danger" style="margin-top: 200px">
- <div class="panel-heading">
- <strong>
- <i class="fa fa-warning"></i>
- Server Error
- </strong>
- </div>
- <div class="panel-body">
- {% block message %}
- <p>
- There was a problem with your request. Please contact an administrator.
- </p>
- {% endblock %}
- <hr />
- <p>
- The complete exception is provided below:
- </p>
- <pre><strong>{{ exception }}</strong><br />
- {{ error }}</pre>
- <p>
- If further assistance is required, please post to the <a href="https://groups.google.com/forum/#!forum/netbox-discuss">NetBox mailing list</a>.
- </p>
- <div class="text-right">
- <a href="{% url 'home' %}" class="btn btn-primary">Home Page</a>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </body>
- </html>
|