Add date field in mod profile game table

This commit is contained in:
kraktus 2021-09-15 10:33:56 +02:00
parent a632e1fa40
commit 30b5fdb925

View file

@ -460,6 +460,7 @@ object mod {
th("Move Times", br, "(Avg ± SD)"),
th(span(title := "The frequency of which the user leaves the game page.")("Blurs")),
th(span(title := "Bot detection using grid click analysis.")("Bot")),
th("Date"),
th(span(title := "Aggregate match")(raw("Σ")))
)
),
@ -507,6 +508,13 @@ object mod {
span(cls := s"sig sig_${Display.holdSig(result)}", dataIcon := ""),
if (result.basics.hold) "Yes" else "No"
),
td(
pag.pov(result).map { p =>
a(href := routes.Round.watcher(p.gameId, p.color.name), cls := "glpt")(
momentFromNowServerText(p.game.movedAt)
)
}
),
td(
div(cls := "aggregate")(
span(cls := s"sig sig_${result.assessment.id}")(result.assessment.emoticon)