mirror of
https://github.com/reality/dbot.git
synced 2024-12-26 20:52:39 +01:00
15 lines
465 B
Plaintext
15 lines
465 B
Plaintext
extends ../layout
|
|
|
|
block content
|
|
h3 Users of #{channel} on #{connection}
|
|
div#backlink
|
|
a(href='/channels/'+connection) « Channel List
|
|
ul#quotelist
|
|
-each nick in nicks
|
|
if nicks.hasOwnProperty(nick.name)
|
|
a(href='/user/'+connection+'/'+channel.substr(1,channel.length)+'/'+nick)
|
|
if nick.online
|
|
li.quotes #{nick.name} (Online)
|
|
else
|
|
li.quotes #{nick.name} (Offline)
|