diff options
author | Anirudh Oppiliappan <x@icyphox.sh> | 2022-12-18 22:15:58 +0530 |
---|---|---|
committer | Anirudh Oppiliappan <x@icyphox.sh> | 2022-12-18 22:18:00 +0530 |
commit | 232a3603a6dc67537109cec06e738b596265475c (patch) | |
tree | c2c31f1e2dd3c779b0dcbee864d559911974a6e9 /templates | |
parent | 99a092b8b01dd8edbc5a01401a1ae4178f88a018 (diff) | |
download | legit-232a3603a6dc67537109cec06e738b596265475c.tar.gz legit-232a3603a6dc67537109cec06e738b596265475c.tar.bz2 legit-232a3603a6dc67537109cec06e738b596265475c.zip |
templates: message under tag name
Diffstat (limited to '')
-rw-r--r-- | templates/refs.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/refs.html b/templates/refs.html index 9257640..503a41e 100644 --- a/templates/refs.html +++ b/templates/refs.html @@ -29,12 +29,12 @@ {{ range .tags }} <div> <strong>{{ .Name }}</strong> + {{ if .Message }} + <pre>{{ .Message }}</pre> </div> <div> <a href="/{{ $name }}/tree/{{ .Name }}/">browse</a> <a href="/{{ $name }}/log/{{ .Name }}">log</a> - {{ if .Message }} - <pre>{{ .Message }}</pre> </div> {{ end }} {{ end }} |