mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
48 lines
1.5 KiB
HTML
48 lines
1.5 KiB
HTML
{% load static %}
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<title>Server Error</title>
|
|
<link rel="stylesheet" href="{% static 'netbox.css'%}" />
|
|
<meta charset="UTF-8">
|
|
</head>
|
|
|
|
<body>
|
|
<div class="container-fluid">
|
|
<div class="row">
|
|
<div class="col col-md-6 offset-md-3">
|
|
<div class="card bg-danger mt-5">
|
|
<h5 class="card-header">
|
|
<i class="mdi mdi-alert"></i> Server Error
|
|
</h5>
|
|
<div class="card-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 }}
|
|
|
|
Python version: {{ python_version }}
|
|
NetBox version: {{ netbox_version }}</pre>
|
|
<p>
|
|
If further assistance is required, please post to the <a href="https://groups.google.com/g/netbox-discuss">NetBox mailing list</a>.
|
|
</p>
|
|
<div class="text-end">
|
|
<a href="{% url 'home' %}" class="btn btn-primary">Home Page</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|