37 lines
1.4 KiB
HTML
37 lines
1.4 KiB
HTML
|
<!DOCTYPE html>
|
||
|
|
||
|
<html lang="en">
|
||
|
|
||
|
<head>
|
||
|
<meta charset="utf-8" />
|
||
|
{% load staticfiles %}
|
||
|
<link rel="stylesheet" href="{% static 'css/style.css' %}">
|
||
|
<link href="{% static 'images/favicon.ico' %}" rel="shortcut icon">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
|
||
|
<title>{{ settings.title }}</title>
|
||
|
|
||
|
<!-- Latest compiled and minified CSS -->
|
||
|
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
|
||
|
|
||
|
<!-- Optional theme -->
|
||
|
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap-theme.min.css" integrity="sha384-fLW2N01lMqjakBkx3l/M9EahuwpSfeNvV63J5ezn3uZzapT0u7EYsXMjQV+0En5r" crossorigin="anonymous">
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
|
||
|
<div class="container" style="margin-top:10%">
|
||
|
|
||
|
<p>Settings are not set. Please configure the service first!</p>
|
||
|
<a id='adminurl' href=""></a>
|
||
|
<script language='javascript' type="text/javascript">
|
||
|
url = location.protocol + '//' + location.host + '/admin';
|
||
|
link = document.getElementById("adminurl");
|
||
|
link.href=url;
|
||
|
link.innerHTML=url;
|
||
|
</script>
|
||
|
|
||
|
</div>
|
||
|
|
||
|
</body>
|
||
|
</html>
|