summaryrefslogtreecommitdiff
path: root/views/games_public.pug
blob: e1a5387b9f44aad4f5f2bb23f3662343cd383a1d (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
//- vim:ts=4:sw=4:
- let open_games = games.filter(game => game.status === 0 && !game.is_ready)
- let ready_games = games.filter(game => game.status === 0 && game.is_ready)
- let replacement_games = games.filter(game => game.status === 1 && !game.is_ready)
- let active_games = games.filter(game => game.status === 1 && game.is_ready)
doctype html
html
	head
		include head
		title= SITE_NAME
		if user
			meta(http-equiv="refresh" content=900)
	body
		include header
		article
			h1 All Public Games

			h2 Open
			if open_games.length > 0
				+gamelist(open_games)
			else
				p No open games.

			p
				a(href="/create") Create a new game

			if replacement_games.length > 0
				h2 Need replacement
				+gamelist(replacement_games)

			if ready_games.length > 0
				h2 Ready to start
				+gamelist(ready_games)

			if active_games.length > 0
				h2 Active
				+gamelist(active_games)