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

41 lines
1.6 KiB
HTML
Raw Normal View History

2017-05-19 16:03:04 -04:00
{% load static from staticfiles %}
2016-03-01 11:23:03 -05:00
<!DOCTYPE html>
<html lang="en">
<head>
<title>Server Error</title>
2017-05-19 16:03:04 -04:00
<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' %}">
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-4 col-md-offset-4">
<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">
<p>There was a problem with your request. This error has been logged and administrative staff have
been notified. Please return to the home page and try again.</p>
<p>If you are responsible for this installation, please consider
<a href="https://github.com/digitalocean/netbox/issues">filing a bug report</a>. Additional
information is provided below:</p>
<pre><strong>{{ exception }}</strong><br />
{{ error }}</pre>
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>