In an index.pug file added a tbody tag to a table.
This commit is contained in:
parent
98ed4035a7
commit
20b8b62b73
@ -46,23 +46,24 @@ 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
|
||||
each song in songList.List()
|
||||
tr
|
||||
td= utils.ToClientTimezone(song.StartAt, r).Format("15:04")
|
||||
if song.MaxListeners != 0
|
||||
td= song.MaxListeners
|
||||
else
|
||||
td
|
||||
td= song.ArtistTitle()
|
||||
tbody
|
||||
each song in songList.List()
|
||||
tr
|
||||
td= utils.ToClientTimezone(song.StartAt, r).Format("15:04")
|
||||
if song.MaxListeners != 0
|
||||
td= song.MaxListeners
|
||||
else
|
||||
td
|
||||
td= song.ArtistTitle()
|
||||
- ml := radio.MostListened()
|
||||
if ml.Song != ""
|
||||
p.right Most listened song was "#{ml.Song}" on #{utils.ToClientTimezone(ml.Date, r).Format(radio.MostListenedDateFormat)} with #[b #{ml.Listeners}] listeners.
|
||||
|
Loading…
Reference in New Issue
Block a user