forked from Cliffbreak/tsviewer
26 lines
No EOL
536 B
HTML
26 lines
No EOL
536 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<title>TS3 Viewer</title>
|
|
|
|
<link rel="stylesheet" href="static/styles.css">
|
|
</head>
|
|
|
|
<body>
|
|
<h2>{{.Server.Name}}</h2>
|
|
<!-- <small>{{.Server.Version}}</small> -->
|
|
{{$clients := .Clients}}
|
|
{{range .Channels}}
|
|
<p class="channel">{{.Name}}</p>
|
|
{{$channelId := .ID}}
|
|
{{range $clients}}
|
|
{{if eq $channelId .ChannelID}}
|
|
<p class="client">{{.Nickname}}</p>
|
|
{{end}}
|
|
{{end}}
|
|
{{end}}
|
|
<div></div>
|
|
</body>
|
|
|
|
</html> |