You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.6 KiB
45 lines
1.6 KiB
<!DOCTYPE html>{% load i18n %}
|
|
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org">
|
|
<head lang="{{ LANGUAGE_CODE }}">
|
|
<meta charset="UTF-8">
|
|
<title>{% trans 'Server error' %}</title>
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
|
|
<!-- Core CSS - Include with every page -->
|
|
<link rel="stylesheet" href="/static/css/bootstrap.min.css">
|
|
|
|
<style>
|
|
.no-border-on-me>thead>tr>th,
|
|
.no-border-on-me>tbody>tr>th,
|
|
.no-border-on-me>tfoot>tr>th,
|
|
.no-border-on-me>thead>tr>td,
|
|
.no-border-on-me>tbody>tr>td,
|
|
.no-border-on-me>tfoot>tr>td
|
|
{
|
|
border-top-style: none;
|
|
border-bottom-style: none;
|
|
}
|
|
</style>
|
|
|
|
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
|
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
|
<!--[if lt IE 9]>
|
|
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
|
|
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
|
|
<![endif]-->
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-md-6 col-md-offset-3">
|
|
<div align="center"><h1>{% trans '500 - Server error' %}</h1></div>
|
|
<div align="center"><p>{% trans 'A server has error occurred. Please contact the administrator.' %}</p></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|