mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-01 04:54:09 +00:00
16 lines
527 B
Go HTML Template
16 lines
527 B
Go HTML Template
{{if and .ShowRole.IsPoster (not .IgnorePoster)}}
|
|
<div class="ui basic label role-label" data-tooltip-content="
|
|
{{if .IsPull}}
|
|
{{ctx.Locale.Tr "repo.issues.author.tooltip.pr"}}
|
|
{{else}}
|
|
{{ctx.Locale.Tr "repo.issues.author.tooltip.issue"}}
|
|
{{end}}">
|
|
{{ctx.Locale.Tr "repo.issues.author"}}
|
|
</div>
|
|
{{end}}
|
|
{{if .ShowRole.RoleInRepo}}
|
|
<div class="ui basic label role-label" data-tooltip-content="{{.ShowRole.RoleInRepo.LocaleHelper ctx.Locale}}">
|
|
{{.ShowRole.RoleInRepo.LocaleString ctx.Locale}}
|
|
</div>
|
|
{{end}}
|