projects
/
broadcaster
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Solve race condition when updating files or playlists and notifying radios
[broadcaster]
/
templates
/
radios.html
1
<!DOCTYPE
html
>
2
<html
lang
=
"en"
>
3
<head>
4
<meta
charset
=
"UTF-8"
>
5
<meta
name
=
"viewport"
content
=
"width=device-width, initial-scale=1.0"
>
6
<title>
Broadcaster
</title>
7
</head>
8
<body>
9
<main>
10
<h1>
Radios
</h1>
11
<ul>
12
{{range .Radios}}
13
<li><b>
{{.Name}}
</b>
{{.Token}}
<a
href
=
"/radio/{{.Id}}"
>
(Edit)
</a></li>
14
{{end}}
15
</ul>
16
<p><a
href
=
"/radio/new"
>
Register New Radio
</a></p>
17
</main>
18
</body>
19
</html>