1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

49 lines
1.7 KiB
HTML
Raw Normal View History

2018-11-02 14:42:15 -04:00
{% load static %}
2016-03-01 11:23:03 -05:00
<!DOCTYPE html>
<html lang="en">
<head>
<title>Server Error</title>
<link rel="stylesheet" href="{% static 'bootstrap-3.4.1-dist/css/bootstrap.min.css' %}">
2017-05-19 16:03:04 -04:00
<link rel="stylesheet" href="{% static 'font-awesome-4.7.0/css/font-awesome.min.css' %}">
<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">
<div class="col-md-6 col-md-offset-3">
2017-05-19 16:03:04 -04:00
<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>
2017-05-19 16:03:04 -04:00
<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>
2017-05-19 16:03:04 -04:00
<div class="text-right">
<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>