summaryrefslogtreecommitdiff
path: root/views/user_list.pug
blob: 26c3f82920753039d5552a7898df630159c515c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
//- vim:ts=4:sw=4:
doctype html
html
	head
		include head
		title User List
		style.
			td.avatar { padding: 0; width: 80px; }
			td.avatar img { display: block; width: 80px; height: 80px; }
	body
		include header
		article
			h1 User List

			table
				thead
					tr
						th Avatar
						th Name
						th Member since
						th Last seen
				tbody
					each row in user_list
						tr
							td.avatar: img(src=row.avatar)
							td.name: a(href="/user/"+row.name)= row.name
							td= row.ctime
							td= row.atime