TeamspeakStats/template.html

29 lines
852 B
HTML
Raw Normal View History

<html>
2015-06-08 15:25:37 -04:00
<head>
<title>{{ title }}</title>
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
<style type="text/css">
h1, p {
text-align: center;
}
</style>
</head>
<body>
<div id="container">
2015-06-21 15:28:14 -04:00
{% if debug %}
<div class="alert alert-danger" role="alert" style="text-align: center;"><b>DEBUG</b></div>
{% endif %}
2015-06-08 15:25:37 -04:00
{% for headline, list in objs %}
{% if list|length > 0 %}
<h1>{{ headline }}</h2>
<ul class="list-group">
{% for client, value in list %}
2015-06-21 15:28:14 -04:00
<li class="list-group-item{{ ' list-group-item-success' if client.connected else loop.cycle('" style="background-color: #eee;', '') }}">{{ client.nick }}{{ " (" + client.identifier + ")" if debug }}<span class="badge">{{ value }}</span></li>
2015-06-08 15:25:37 -04:00
{% endfor %}
</ul>
{% endif %}
{% endfor %}
</div>
</body>
</html>