1
0

In an index.pug file added a tbody tag to a table.

This commit is contained in:
Alexander Andreev 2023-10-02 18:20:07 +04:00
parent 98ed4035a7
commit 20b8b62b73
Signed by: Arav
GPG Key ID: D22A817D95815393

View File

@ -46,15 +46,16 @@ html(lang='en')
| Your browser doesn't support an audio element, it's sad... But you always can take the #[a(href='/playlist') playlist]!
div
if (songList.Current() != nil)
p Now playing: #[span#radio-song #{songList.Current().ArtistTitle()}] #[span#radio-duration #{songList.Current().DurationString()}]
p Now playing: #[span#radio-song #{songList.Current().ArtistTitle()}] ( #[span#radio-duration-estimate ] #[span#radio-duration #{songList.Current().DurationString()}] )
else
p Now playing: #[span#radio-song ] #[span#radio-duration ]
p Now playing: #[span#radio-song ] ( #[span#radio-duration-estimate ] #[span#radio-duration ] )
p Current/peak listeners: #[span#radio-listeners #{listeners.Current()}] / #[span#radio-listener-peak #{listeners.Peak()}]
p
small Notice: information updates every 45 seconds. But you can #[button#radio-update update] it forcibly.
section
h2 Last #{songList.Len()} songs
table#last-songs
tbody
each song in songList.List()
tr
td= utils.ToClientTimezone(song.StartAt, r).Format("15:04")