2022-09-22 02:17:02 +00:00
|
|
|
{% extends "default.html" %}
|
|
|
|
|
|
|
|
{% block title %}
|
|
|
|
<title>{{SITE_NAME}} - Live</title>
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<style>
|
|
|
|
tr:hover {
|
|
|
|
border: 2.5px solid var(--primary);
|
|
|
|
}
|
2022-09-22 18:30:51 +00:00
|
|
|
img.thumb {
|
|
|
|
border-radius: 4px;
|
|
|
|
}
|
2022-09-22 02:17:02 +00:00
|
|
|
</style>
|
2022-09-22 02:27:41 +00:00
|
|
|
<h1 class="py-3"><i class="fas fa-circle mr-3" style="color:red"></i>Live</h1>
|
2022-09-22 02:17:02 +00:00
|
|
|
<div class="overflow-x-auto">
|
|
|
|
<table class="table table-striped mb-5">
|
|
|
|
<tbody>
|
|
|
|
{% for link, thumb, name, title, viewers in live %}
|
|
|
|
<tr onclick="window.open('{{link}}', '_blank')">
|
2022-09-22 18:30:51 +00:00
|
|
|
<td width="48"><img class="thumb" src="{{thumb}}" alt="{{name}} thumbnail" referrerpolicy="no-referrer" width="48"></td>
|
2022-09-22 02:47:28 +00:00
|
|
|
<td>{{name}}</td>
|
|
|
|
<td>{{title}}</td>
|
|
|
|
<td>{{viewers}}</td>
|
2022-09-22 02:17:02 +00:00
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
|
2022-09-22 02:29:09 +00:00
|
|
|
<h1 class="py-3"><i class="fas fa-circle mr-3" style="color:gray"></i>Offline</h1>
|
2022-09-22 02:17:02 +00:00
|
|
|
<div class="overflow-x-auto">
|
|
|
|
<table class="table table-striped mb-5">
|
|
|
|
<tbody>
|
|
|
|
{% for link, thumb, name in offline %}
|
|
|
|
<tr onclick="window.open('{{link}}', '_blank')">
|
2022-09-22 18:30:51 +00:00
|
|
|
<td width="48"><img class="thumb" src="{{thumb}}" alt="{{name}} thumbnail" referrerpolicy="no-referrer" width="48"></td>
|
2022-09-22 02:17:02 +00:00
|
|
|
<td>{{name}}</td>
|
|
|
|
<td></td>
|
|
|
|
<td></td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|