From 7c0eb693a50dbd2890a5ad1b27516a0a829bbf7c Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Fri, 31 Mar 2023 23:53:20 +0200 Subject: Rename game "description" to "notice". --- views/join.pug | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) (limited to 'views/join.pug') diff --git a/views/join.pug b/views/join.pug index abbaf2c..0f9daef 100644 --- a/views/join.pug +++ b/views/join.pug @@ -39,17 +39,27 @@ html div.logo +gamecover(game.title_id) + div Scenario: #{game.scenario} + + unless game.human_options === "None" + div Options: #{game.human_options} div if game.is_private | Owner: #{game.owner_name} (private) else | Owner: #{game.owner_name} - div Scenario: #{game.scenario} - div Options: #{game.human_options} + + div Created: #{game.ctime} + unless game.mtime === "never" + div Changed: #{game.mtime} + if game.status === 2 - div Result: !{game.result} + div Result: #{game.result} - p= game.description || "No description." + if game.notice + br + div + i= game.notice br(clear="left") -- cgit v1.2.3