From 83949e45c0f3abfba5432a4bdf38e2fc744afec2 Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Tue, 6 May 2025 20:25:36 +0200 Subject: Remove "api" prefix on many routes. --- views/stats_user.pug | 53 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 views/stats_user.pug (limited to 'views/stats_user.pug') diff --git a/views/stats_user.pug b/views/stats_user.pug new file mode 100644 index 0000000..3b201ef --- /dev/null +++ b/views/stats_user.pug @@ -0,0 +1,53 @@ +//- vim:ts=4:sw=4: +- let all_won = 0 +- let all_total = 0 +doctype html +html + head + include head + title Statistics for #{who.name} + body + include header + article + h1 Statistics for #{who.name} + + table.striped + thead + tr + th Title + th Scenario + th Role + th.r Played + th.r Won + tbody + each row in stats + tr + - all_won += row.won + - all_total += row.total + td= row.title_name + td= row.scenario + td= row.role + td.r= row.total + td.r= Math.round(row.won*100/row.total) + "%" + tfoot + tr + td Overall + td + td + td.r= all_total + td.r= Math.round(all_won*100/all_total) + "%" + + table.striped + thead + tr + th Title + th.r Rating + th.r Plays + th.r Last played + tbody + each row in ratings + tr + td= row.title_name + td.r= row.rating + td.r= row.count + td.r= row.last -- cgit v1.2.3