summaryrefslogtreecommitdiff
path: root/views/game_stats.pug
blob: a60d7cbac71fc60ed20c89b699cf6afeb73e7acf (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(style="min-width:auto")
				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