From ebca9c2e72d546f72bfc9ce06c7b0c9d8ddee12a Mon Sep 17 00:00:00 2001 From: "smit.codes" Date: Thu, 28 May 2026 10:51:25 +0300 Subject: [PATCH] appview/commit: show full commit datetime Implementation of [issue #585](https://tangled.org/tangled.org/core/issues/585) `commit/hash` page now shows the full datetime string of the commit as-is. Signed-off-by: --- appview/pages/templates/repo/commit.html | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/appview/pages/templates/repo/commit.html b/appview/pages/templates/repo/commit.html index 869b7953..e6c7eaca 100644 --- a/appview/pages/templates/repo/commit.html +++ b/appview/pages/templates/repo/commit.html @@ -33,7 +33,10 @@ {{ template "attribution" . }} - {{ template "repo/fragments/time" $commit.Committer.When }} + + {{ template "repo/fragments/time" $commit.Committer.When }} + ({{ $commit.Committer.When | longTimeFmt }}) + {{ slice $commit.This 0 8 }} -- 2.51.2