show boot date

This commit is contained in:
Thibault Duplessis 2020-04-24 08:48:49 -06:00
parent 0cb9c6ab7d
commit 6a21c2a858
2 changed files with 5 additions and 1 deletions

View file

@ -42,7 +42,11 @@ object help {
env.appVersion map { appVersion =>
st.section(cls := "box box-pad")(
h1("lila version"),
pre(appVersion)
pre(appVersion),
pre(
"Boot ",
momentFromNow(lila.common.Uptime.startedAt)
)
)
},
br,