diff options
author | Gabriel A. Giovanini <mail@gabrielgio.me> | 2025-03-25 21:20:13 +0100 |
---|---|---|
committer | Gabriel A. Giovanini <mail@gabrielgio.me> | 2025-03-25 21:20:13 +0100 |
commit | 6006194c072dba9f65aa08c6e3be06ea8ead8910 (patch) | |
tree | e647fd2063efce999ac97761f05aaf38fee135dd /templates/commit.qtpl.go | |
parent | c1247a52e92523be8d225d20dc9592f32dca5088 (diff) | |
download | cerrado-6006194c072dba9f65aa08c6e3be06ea8ead8910.tar.gz cerrado-6006194c072dba9f65aa08c6e3be06ea8ead8910.tar.bz2 cerrado-6006194c072dba9f65aa08c6e3be06ea8ead8910.zip |
feat: Add ref page
Now there is page more tailored to a single ref.
Diffstat (limited to 'templates/commit.qtpl.go')
-rw-r--r-- | templates/commit.qtpl.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/commit.qtpl.go b/templates/commit.qtpl.go index 5017880..0aefbb8 100644 --- a/templates/commit.qtpl.go +++ b/templates/commit.qtpl.go @@ -106,9 +106,9 @@ func StreamCommit(qw422016 *qt422016.Writer, name string, c *git.CommitReference //line templates/commit.qtpl:16 qw422016.E().S(name) //line templates/commit.qtpl:16 - qw422016.N().S(`/commit/`) + qw422016.N().S(`/ref/`) //line templates/commit.qtpl:16 - qw422016.E().S(c.Commit().Hash.String()) + qw422016.E().S(r.Name().Short()) //line templates/commit.qtpl:16 qw422016.N().S(`/">`) //line templates/commit.qtpl:16 |