Monorepo for Tangled tangled.org
2

Configure Feed

Select the types of activity you want to include in your feed.

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: <smit@smit.codes>

author
smit.codes
committer
Tangled
date (May 28, 2026, 10:51 AM +0300) commit ebca9c2e parent 2a93a241
+4 -1
+4 -1
appview/pages/templates/repo/commit.html
··· 33 33 {{ template "attribution" . }} 34 34 35 35 <span class="px-1 select-none before:content-['\00B7']"></span> 36 - {{ template "repo/fragments/time" $commit.Committer.When }} 36 + <span class="inline-flex flex-wrap items-center gap-1"> 37 + {{ template "repo/fragments/time" $commit.Committer.When }} 38 + <span class="text-gray-400 dark:text-gray-500">({{ $commit.Committer.When | longTimeFmt }})</span> 39 + </span> 37 40 <span class="px-1 select-none before:content-['\00B7']"></span> 38 41 39 42 <a href="/{{ $repo }}/commit/{{ $commit.This }}" class="no-underline hover:underline text-gray-500 dark:text-gray-300">{{ slice $commit.This 0 8 }}</a>