summaryrefslogtreecommitdiff
path: root/views/game_stats.pug
blob: 692c30b6c8a08ed422f50807e92e8a61c816e51a (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= row.name
							td.r= row.rating
							td.r= row.count
							td.r= row.last