36 lines
1.4 KiB
Django/Jinja
36 lines
1.4 KiB
Django/Jinja
<html>
|
|
<head>
|
|
<title>{{ title }}</title>
|
|
<meta charset="utf-8">
|
|
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/hint.css/2.4.1/hint.min.css" integrity="sha256-7KczUWqIa/6KaIKtNfG18eilVQR4vJ4S9SSiDAplUwc=" crossorigin="anonymous">
|
|
<style type="text/css">
|
|
body {
|
|
padding-top: 50px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container-fluid">
|
|
<nav class="navbar navbar-default navbar-fixed-top"><div class="container-fluid">
|
|
<div class="navbar-header">
|
|
<a class="navbar-brand" href="#">{{ title }}</a>
|
|
</div>
|
|
<ul class="nav navbar-nav">
|
|
{% for sid, _ in servers %}
|
|
<li><a href="#sid{{ sid }}">Server {{ sid }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% if debug %}
|
|
<p class="navbar-text navbar-right" style="color: red; padding-right: 10px;">debug mode</p>
|
|
{% endif %}
|
|
</div></nav>
|
|
{% for server in servers %}
|
|
<h1 class="page-header" onclick="window.location = '#sid{{ server.sid }}'" id="sid{{ server.sid }}">Server {{ server.sid }}</h2>
|
|
{% include 'stats.jinja2' %}
|
|
{% endfor %}
|
|
<small>Generated by <a href="https://github.com/Thor77/TeamspeakStats">TeamspeakStats</a> at {{ creation_time|frmttime }}</small>
|
|
</div>
|
|
</body>
|
|
</html>
|