summaryrefslogtreecommitdiff
path: root/views/info.ejs
blob: 4a515ff5bb8d01af23aaf036936013ee787bca74 (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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<%- include('header', { title: title.title_name, refresh: (user ? 300 : 0) }) _%>
<img class="logo" src="/<%= title.title_id %>/cover.jpg">
<%- include('../public/' + title.title_id + '/about.html') %>
<p>
Read more about the game on
<a href="https://boardgamegeek.com/boardgame/<%= title.bgg %>">boardgamegeek.com</a>.

<h2>Open Games</h2>
<table class="game">
<tr><th>ID<th>Scenario<th>Options<th>Players<th>Description<th>Created<th>
<%_ if (open_games.length > 0) { _%>
<%_ open_games.forEach((row) => { _%>
<tr>
<td class="id"><%= row.game_id %>
<td class="scenario"><%= row.scenario %>
<td class="options"><%- row.options %>
<td class="players"><%- row.player_names %>
<td class="description"><%= row.description %>
<td class="time"><%= row.ctime %>
<td class="command"><a href="/join/<%= row.game_id %>">Join</a>
<%_ }); } else { _%>
<tr><td colspan="7">No open games.
<%_ } _%>
</table>

<p>
<a href="/create/<%= title.title_id %>">Create a new game</a>.

<%_ if (active_games.length > 0) { _%>
<h2>Active Games</h2>
<table class="game">
<tr><th>ID<th>Scenario<th>Options<th>Players<th>Description<th>Changed<th>Turn<th>
<%_ active_games.forEach((row) => { _%>
<tr>
<td class="id"><%= row.game_id %>
<td class="scenario"><%= row.scenario %>
<td class="options"><%- row.options %>
<td class="players"><%- row.player_names %>
<td class="description"><%= row.description %>
<td class="time"><%= row.mtime %>
<td class="<%= row.is_active ? "role is_active" : "role" %>"><%= row.active %>
<%_
	if (row.is_yours) {
		if (row.is_shared) {
			%><td class="command"><a href="/join/<%= row.game_id %>">Play</a><%
		} else {
			%><td class="command"><a href="/<%- row.title_id %>/play:<%- row.game_id %>:<%- row.your_role %>">Play</a><%
		}
	} else {
		%><td class="command"><a href="/<%- row.title_id %>/play:<%- row.game_id %>">View</a><%

	}
_%>
<%_ }); _%>
</table>
<%_ } _%>

<%_ if (finished_games.length > 0) { _%>
<h2>Finished Games</h2>
<table class="game">
<tr><th>ID<th>Scenario<th>Options<th>Players<th>Description<th>Finished<th>Result<th>
<%_ finished_games.forEach((row) => { _%>
<tr>
<td class="id"><%= row.game_id %>
<td class="scenario"><%= row.scenario %>
<td class="options"><%- row.options %>
<td class="players"><%- row.player_names %>
<td class="description"><%= row.description %>
<td class="time"><%= row.mtime %>
<td class="result"><%= row.result %>
<%_
	if (row.is_yours) {
		if (row.is_shared) {
			%><td class="command"><a href="/join/<%= row.game_id %>">View</a><%
		} else {
			%><td class="command"><a href="/<%- row.title_id %>/play:<%- row.game_id %>:<%- row.your_role %>">View</a><%
		}
	} else {
		%><td class="command"><a href="/<%- row.title_id %>/play:<%- row.game_id %>">View</a><%
	}
_%>
<%_ }); _%>
</table>
<%_ } _%>