diff options
author | Lauris BH <lauris@nix.lv> | 2018-03-13 04:03:55 +0200 |
---|---|---|
committer | Lunny Xiao <xiaolunwen@gmail.com> | 2018-03-13 10:03:55 +0800 |
commit | c0d41b1b77169553006bd9211d025de4da8bafd8 (patch) | |
tree | 95c704bdd07576766e2c29533578da2f3002ab64 /templates/repo/issue/list.tmpl | |
parent | ad33730dcaffed632200316a5ce5675b30ed1e99 (diff) | |
download | gitea-c0d41b1b77169553006bd9211d025de4da8bafd8.tar.gz gitea-c0d41b1b77169553006bd9211d025de4da8bafd8.zip |
Add label descriptions (#3662)
* Add label descriptions
* Add default descriptions to label template
Diffstat (limited to 'templates/repo/issue/list.tmpl')
-rw-r--r-- | templates/repo/issue/list.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/repo/issue/list.tmpl b/templates/repo/issue/list.tmpl index 794a488134..04a11ca5cc 100644 --- a/templates/repo/issue/list.tmpl +++ b/templates/repo/issue/list.tmpl @@ -191,7 +191,7 @@ <a class="ui label" href="{{$.RepoLink}}/src/branch/{{.Ref}}">{{.Ref}}</a> {{end}} {{range .Labels}} - <a class="ui label" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&state={{$.State}}&labels={{.ID}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}" style="color: {{.ForegroundColor}}; background-color: {{.Color}}">{{.Name}}</a> + <a class="ui label" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&state={{$.State}}&labels={{.ID}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}" style="color: {{.ForegroundColor}}; background-color: {{.Color}}" title="{{.Description}}">{{.Name}}</a> {{end}} {{if .NumComments}} |