mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
49 lines
1.8 KiB
HTML
49 lines
1.8 KiB
HTML
{% load static from staticfiles %}
|
|
<!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>
|