diff options
author | wxiaoguang <wxiaoguang@gmail.com> | 2024-11-05 14:04:26 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-05 14:04:26 +0800 |
commit | 4a469c8e1b3c1d153316aec9fd8cbdd3e1dd54e8 (patch) | |
tree | 3fc7eae5668299c7dbd5933cd14839bbccacefdd /templates/shared | |
parent | b068dbd40ee3b4dc7d18cdcf168f0c24cea234c0 (diff) | |
download | gitea-4a469c8e1b3c1d153316aec9fd8cbdd3e1dd54e8.tar.gz gitea-4a469c8e1b3c1d153316aec9fd8cbdd3e1dd54e8.zip |
Refactor template ctx and render utils (#32422)
Clean up the templates
Diffstat (limited to 'templates/shared')
-rw-r--r-- | templates/shared/issuelist.tmpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/shared/issuelist.tmpl b/templates/shared/issuelist.tmpl index f15e812486..ef2352665d 100644 --- a/templates/shared/issuelist.tmpl +++ b/templates/shared/issuelist.tmpl @@ -13,7 +13,7 @@ <div class="flex-item-main"> <div class="flex-item-header"> <div class="flex-item-title"> - <a class="tw-no-underline issue-title" href="{{if .Link}}{{.Link}}{{else}}{{$.Link}}/{{.Index}}{{end}}">{{RenderEmoji $.Context .Title | RenderCodeBlock}}</a> + <a class="tw-no-underline issue-title" href="{{if .Link}}{{.Link}}{{else}}{{$.Link}}/{{.Index}}{{end}}">{{ctx.RenderUtils.RenderEmoji .Title | RenderCodeBlock}}</a> {{if .IsPull}} {{if (index $.CommitStatuses .PullRequest.ID)}} {{template "repo/commit_statuses" dict "Status" (index $.CommitLastStatus .PullRequest.ID) "Statuses" (index $.CommitStatuses .PullRequest.ID)}} @@ -21,7 +21,7 @@ {{end}} <span class="labels-list tw-ml-1"> {{range .Labels}} - <a href="?q={{$.Keyword}}&type={{$.ViewType}}&state={{$.State}}&labels={{.ID}}{{if ne $.listType "milestone"}}&milestone={{$.MilestoneID}}{{end}}&assignee={{$.AssigneeID}}&poster={{$.PosterID}}{{if $.ShowArchivedLabels}}&archived=true{{end}}">{{RenderLabel $.Context ctx.Locale .}}</a> + <a href="?q={{$.Keyword}}&type={{$.ViewType}}&state={{$.State}}&labels={{.ID}}{{if ne $.listType "milestone"}}&milestone={{$.MilestoneID}}{{end}}&assignee={{$.AssigneeID}}&poster={{$.PosterID}}{{if $.ShowArchivedLabels}}&archived=true{{end}}">{{ctx.RenderUtils.RenderLabel .}}</a> {{end}} </span> </div> |