blob: 49d20d82fde6f053953e12e5c27c2ad1733e52c0 (
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
29
30
31
32
33
34
35
36
37
38
|
//- vim:ts=4:sw=4:
doctype html
html
head
include head
title= SITE_NAME
if active_games.length > 0
meta(http-equiv="refresh" content=300)
body
include header
article
h1 Your games
if ready_games.length > 0
h2 Ready to start
+gametable(0,ready_games)
if open_games.length > 0
h2 Open
+gametable(0,open_games)
if replacement_games.length > 0
h2 Need replacement
+gametable(0, replacement_games)
if active_games.length > 0
h2 Active
+gametable(1,active_games)
if finished_games.length > 0
h2 Recently finished
+gametable(2,finished_games)
p <a href="/games/finished">All your finished games</a>
if open_games.length === 0 && ready_games.length === 0 && active_games.length === 0 && finished_games.length === 0
p Nothing here.
|