aboutsummaryrefslogtreecommitdiff
path: root/templates/main.html
blob: e0eaa5217cc26dfc11a8fbe2c1ad52241fe1d12a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!DOCTYPE html>
<html>
<head>
    <title>Live Streaming</title>
</head>
<body>
    <h1>Streaming live.</h1>
    {% for client_id in clients.keys() %}
        <h2>Client {{ client_id }}</h2>
            <li>
                <a href="/clients/{{ client_id }}"> Client {{ client_id }} streams
                </a>
            <li>
    {% endfor %}
</body>
</html>