summaryrefslogtreecommitdiff
path: root/views/join.pug
blob: 8a04ad654ffcd774ab315a8642190c42594840ea (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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
//- vim:ts=4:sw=4:
doctype html
html
	head
		include head
		title= game.title_name
		style.
			table { min-width: auto; }
			th,td { min-width: 10em; }
			table td a.red { text-decoration: none; color: brown; font-size: 14px; }
			td a { text-decoration: underline; color: blue; }
			.hide { display: none; }
		script.
			let game = !{ JSON.stringify(game) };
			let roles = !{ JSON.stringify(roles) };
			let players = !{ JSON.stringify(players) };
			let user_id = !{ user.user_id };
			let ready = !{ ready };
		script(src="/join.js")
	body
		include header
		article
			h1= game.title_name
			if flash
				p.error#error= flash
			else
				p.error#error

			a(href="/info/"+game.title_id): img.logo(src="/"+game.title_id+"/cover.jpg")

			p
				if game.is_private
					| Owner: #{game.owner_name} (private)
				else
					| Owner: #{game.owner_name}
				br
				| Scenario: #{game.scenario}
				br
				| Options: #{game.options}

			p= game.description || "No description."

			br(clear="left")

			p
			table
				tr
					each role in roles
						th.command(id="role_"+role.replace(/ /g, "_")+"_name")= role
				tr
					each role in roles
						td.command(id="role_"+role.replace(/ /g, "_")) -
				tr
					td.command#message(colspan=roles.length) -

			p
				button.hide#delete_button(onclick="confirm_delete()") Delete
				button.hide#start_button(onclick=`javascript:send('/start/${game.game_id}')` disabled) Start