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_title.pug | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 views/stats_title.pug (limited to 'views/stats_title.pug') diff --git a/views/stats_title.pug b/views/stats_title.pug new file mode 100644 index 0000000..2107b93 --- /dev/null +++ b/views/stats_title.pug @@ -0,0 +1,25 @@ +//- vim:ts=4:sw=4: +doctype html +html + head + include head + title #{title_name} - Ranking + body + include header + article + h1 #{title_name} - Ranking + + table.striped + thead + tr + th Player + th.r Rating + th.r Plays + th.r Last played + tbody + each row in ratings + tr + td #{row.name} + td.r= row.rating + td.r= row.count + td.r= row.last -- cgit v1.2.3