summaryrefslogtreecommitdiff
path: root/views
diff options
context:
space:
mode:
Diffstat (limited to 'views')
-rw-r--r--views/head.pug15
-rw-r--r--views/join.pug4
2 files changed, 8 insertions, 11 deletions
diff --git a/views/head.pug b/views/head.pug
index 6ea9285..2cb50a0 100644
--- a/views/head.pug
+++ b/views/head.pug
@@ -55,13 +55,10 @@ mixin gamelist(list,hide_title=0)
div.game_head
if item.scenario.length <= 2
div
- | <a href="/join/#{item.game_id}">#{item.game_id}</a> &#x2013;
- | <a href="/#{item.title_id}">#{item.title_name}</a>
- | (#{item.scenario})
+ | <a href="/join/#{item.game_id}">#{item.game_id} &#x2013; #{item.title_name} (#{item.scenario})</a>
else
div
- | <a href="/join/#{item.game_id}">#{item.game_id}</a> &#x2013;
- | <a href="/#{item.title_id}">#{item.title_name}</a>
+ | <a href="/join/#{item.game_id}">#{item.game_id} &#x2013; #{item.title_name}</a>
case item.status
when 0
@@ -72,19 +69,19 @@ mixin gamelist(list,hide_title=0)
when 1
if item.is_yours
if item.your_role
- a(class="command" href=`/${item.title_id}/play:${item.game_id}:${item.your_role}`) Play
+ a(class="command" href=`/${item.title_id}/play.html?game=${item.game_id}&role=${encodeURIComponent(item.your_role)}`) Play
else
a(class="command" href="/join/"+item.game_id) Play
else
- a(class="command" href=`/${item.title_id}/play:${item.game_id}`) View
+ a(class="command" href=`/${item.title_id}/play.html?game=${item.game_id}&role=Observer`) View
when 2
if item.is_yours
if item.your_role
- a(class="command" href=`/${item.title_id}/play:${item.game_id}:${item.your_role}`) Review
+ a(class="command" href=`/${item.title_id}/play.html?game=${item.game_id}&role=${encodeURIComponent(item.your_role)}`) Review
else
a(class="command" href="/join/"+item.game_id) Review
else
- a(class="command" href=`/${item.title_id}/play:${item.game_id}`) Review
+ a(class="command" href=`/${item.title_id}/play.html?game=${item.game_id}&role=Observer`) Review
div.game_main
div.game_info
diff --git a/views/join.pug b/views/join.pug
index ab53ddc..90f0db7 100644
--- a/views/join.pug
+++ b/views/join.pug
@@ -38,9 +38,9 @@ html
div
if game.is_private
- | Owner: #{game.owner_name} (private)
+ | Owner: <a href="/user/#{game.owner_name}">#{game.owner_name}</a> (private)
else
- | Owner: #{game.owner_name}
+ | Owner: <a href="/user/#{game.owner_name}">#{game.owner_name}</a>
div Scenario: #{game.scenario}
div Options: #{game.human_options}
if game.status === 2