diff options
-rw-r--r-- | server.js | 4 | ||||
-rw-r--r-- | views/user_stats.pug | 12 |
2 files changed, 11 insertions, 5 deletions
@@ -265,6 +265,7 @@ const SQL_USER_STATS = SQL(` select title_name, scenario, + role, sum(role=result) as won, count(*) as total from @@ -277,7 +278,8 @@ const SQL_USER_STATS = SQL(` and game_id in (select game_id from opposed_games) group by title_name, - scenario + scenario, + role `); function is_blacklisted(mail) { diff --git a/views/user_stats.pug b/views/user_stats.pug index 70211ef..865e7fd 100644 --- a/views/user_stats.pug +++ b/views/user_stats.pug @@ -6,7 +6,7 @@ html head include head title Stats for #{who.name} - style td:nth-child(3),td:nth-child(4){text-align:right} + style td:nth-child(n+4){text-align:right} body include header article @@ -16,23 +16,27 @@ html tr th Title th Scenario + th Role + th Played th Won - th Total each row in stats tr - all_won += row.won - all_total += row.total td= row.title_name td= row.scenario - td= row.won + td= row.role td= row.total + td= Math.round(row.won*100/row.total) + "%" tr th th th th + th tr td td - td= Math.round(all_won * 100 / all_total) + "%" + td td= all_total + td= Math.round(all_won*100/all_total) + "%" |