summaryrefslogtreecommitdiff
path: root/views/stats_title.pug
blob: aed6e63eb06bf985ace233f5825b22c8fa4f8442 (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
//- vim:ts=4:sw=4:
doctype html
html
	head
		include head
		title #{title_name} - Ranking
	body
		include header
		article
			h1 #{title_name} - Ranking

			table.striped
				thead
					tr
						th Player
						th.r Rating
						th.r Plays
						th.r Last played
				tbody
					each row in ratings
						tr
							td <a class="black" href="/stats/user/#{row.name}">#{row.name}</a>
							td.r= row.rating
							td.r= row.count
							td.r= row.last