blob: 5d077c6c5d94081c00b0f0f171b947904839541f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
//- vim:ts=4:sw=4:
doctype html
html
head
include head
if user && user.user_id === who.user_id
title Your finished tournaments
else
title #{who.name}’s finished tournaments
body
include header
article.wide
if user && user.user_id === who.user_id
h1 Your finished tournaments
else
h1 #{who.name}’s finished tournaments
if pools.length > 0
+poollist(pools, TM_ICON_FINISHED)
else
p Nothing here.
|