mirror of
https://github.com/go-gitea/gitea.git
synced 2024-12-19 03:03:37 +08:00
13 lines
442 B
Handlebars
13 lines
442 B
Handlebars
{{if and .DependenciesMap (index .DependenciesMap .ID)}}
|
|
<div class="flex-text-inline gt-gap-0">
|
|
<strong class="gt-mr-2">{{.Title}}</strong>
|
|
{{$first := true}}
|
|
{{range (index .DependenciesMap .ID)}}
|
|
{{if not $first}}<span class="gt-mr-2">,</span>{{end}}
|
|
{{$first = false}}
|
|
<a href="{{.Issue.Link}}" data-tooltip-content="#{{.Issue.Index}} {{.Issue.Title | RenderEmoji $.Context}}">
|
|
#{{.Issue.Index}}
|
|
</a>
|
|
{{end}}
|
|
</div>
|
|
{{end}} |