2018-11-02 14:42:15 -04:00
|
|
|
{% load static %}
|
2016-03-01 11:23:03 -05:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
|
|
|
|
<head>
|
2017-10-12 12:39:28 -05:00
|
|
|
<title>Server Error</title>
|
2021-04-18 16:42:28 -07:00
|
|
|
<link rel="stylesheet" href="{% static 'netbox.css'%}" />
|
2017-10-12 12:39:28 -05:00
|
|
|
<meta charset="UTF-8">
|
2016-03-01 11:23:03 -05:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
2017-05-19 16:03:04 -04:00
|
|
|
<div class="container-fluid">
|
|
|
|
<div class="row">
|
2021-04-30 15:55:37 -07:00
|
|
|
<div class="col col-md-6 offset-md-3">
|
2021-04-18 16:42:28 -07:00
|
|
|
<div class="card bg-danger mt-5">
|
|
|
|
<h5 class="card-header">
|
|
|
|
<i class="mdi mdi-alert"></i> Server Error
|
|
|
|
</h5>
|
|
|
|
<div class="card-body">
|
2017-11-03 13:24:31 -04:00
|
|
|
{% 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>
|
2017-05-19 16:03:04 -04:00
|
|
|
<pre><strong>{{ exception }}</strong><br />
|
2020-08-21 12:58:48 -04:00
|
|
|
{{ error }}
|
|
|
|
|
|
|
|
Python version: {{ python_version }}
|
|
|
|
NetBox version: {{ netbox_version }}</pre>
|
2017-11-03 13:24:31 -04:00
|
|
|
<p>
|
2020-10-07 08:53:04 -04:00
|
|
|
If further assistance is required, please post to the <a href="https://groups.google.com/g/netbox-discuss">NetBox mailing list</a>.
|
2017-11-03 13:24:31 -04:00
|
|
|
</p>
|
2021-04-18 16:42:28 -07:00
|
|
|
<div class="text-end">
|
2017-05-19 16:03:04 -04:00
|
|
|
<a href="{% url 'home' %}" class="btn btn-primary">Home Page</a>
|
|
|
|
</div>
|
2016-03-01 11:23:03 -05:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2017-05-19 16:03:04 -04:00
|
|
|
</div>
|
2016-03-01 11:23:03 -05:00
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|