%- include('header', { title: "All Public Games", refresh: (user ? 300 : 0) }) %>
Open
ID | Title | Scenario | Players | Description | Created |
<% if (open_games.length > 0) { %>
<% open_games.forEach((row) => { %>
|
---|
<%= row.game_id %>
| <%= row.title_name %>
| <%= row.scenario %>
| <%= row.player_names || row.owner_name %>
| <%= row.description %>
| <%= row.ctime %>
| Join
<% }); } else { %>
|
No open games.
<% } %>
|
Active
ID | Title | Scenario | Players | Description | Changed | Active |
<% if (active_games.length > 0) { %>
<% active_games.forEach((row) => { %>
|
---|
<%= row.game_id %>
| <%= row.title_name %>
| <%= row.scenario %>
| <%= row.player_names %>
| <%= row.description %>
| <%= row.mtime %>
| "><%= row.active_role %>
| Enter
<% }); } else { %>
|
No active games.
<% } %>
|