From 1375740735b2085d638b53d116c9efeb199ed4d6 Mon Sep 17 00:00:00 2001 From: phire Date: Tue, 20 Dec 2022 09:41:55 +0100 Subject: [PATCH] Link to parent commit file version in commit view It makes sense for [oldfile] in [oldfile]->[newfile] to link to the previous version. This is also how cgit behaves. --- templates/commit.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/templates/commit.html b/templates/commit.html index f0c58dc..440204b 100644 --- a/templates/commit.html +++ b/templates/commit.html @@ -45,6 +45,7 @@
{{ $repo := .name }} {{ $this := .commit.This }} + {{ $parent := .commit.Parent }} {{ range .diff }}
@@ -58,7 +59,7 @@ M {{ end }} {{ if .Name.Old }} - {{ .Name.Old }} + {{ .Name.Old }} {{ if .Name.New }} → {{ .Name.New }}