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