2012-12-24 06:47:47 +01:00
|
|
|
extends ../layout
|
2012-12-24 05:06:04 +01:00
|
|
|
|
|
|
|
block content
|
2013-01-08 07:14:58 +01:00
|
|
|
h3 Users of #{channel} on #{connection}
|
2012-12-24 05:06:04 +01:00
|
|
|
div#backlink
|
|
|
|
a(href='/channels/'+connection) « Channel List
|
|
|
|
ul#quotelist
|
|
|
|
-each nick in nicks
|
2013-01-08 07:14:58 +01:00
|
|
|
if nicks.hasOwnProperty(nick.name)
|
2013-01-09 07:05:01 +01:00
|
|
|
a(href='/user/'+connection+'/'+channel.substr(1,channel.length)+'/'+nick.name)
|
2013-01-08 07:14:58 +01:00
|
|
|
if nick.online
|
2013-01-09 06:53:45 +01:00
|
|
|
if nick.active
|
|
|
|
li.quotes #{nick.name} (Online, Active)
|
|
|
|
else
|
|
|
|
li.quotes #{nick.name} (Online, Inactive)
|
2013-01-08 07:14:58 +01:00
|
|
|
else
|
|
|
|
li.quotes #{nick.name} (Offline)
|