From 87613c401430c23ef0b5871d3ff727f5be2f0e58 Mon Sep 17 00:00:00 2001 From: furo Date: Thu, 4 Nov 2021 23:17:41 +0100 Subject: [PATCH] More info for maps --- views/pages/mapSingle.njk | 56 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) diff --git a/views/pages/mapSingle.njk b/views/pages/mapSingle.njk index d9bc532..819aa49 100644 --- a/views/pages/mapSingle.njk +++ b/views/pages/mapSingle.njk @@ -42,6 +42,62 @@ {% for i in range(0, 5 - map.stars) %}☆{% endfor %} + + + Points: + + + {{ map.points }} + + + + + Released: + + + {{ map.release }} + + + + + Total finishes: + + + {{ map.finishes.total }} + + + + + Team finishes: + + + {{ map.finishes.team }} + + + + + Unique finishes + + + {{ map.finishes.unique }} + + + + + Median time: + + + {{ map.times.median | round(2)}} + + + + + Average time: + + + {{ map.times.average | round(2)}} + + {% endblock %} \ No newline at end of file