1
Fork 0
mirror of https://codeberg.org/forgejo/forgejo.git synced 2024-10-05 06:43:15 +00:00
forgejo/templates/repo/issue/view_content/show_role.tmpl

16 lines
430 B
Handlebars
Raw Normal View History

{{if and (.ShowRole.HasRole "Poster") (not .IgnorePoster)}}
<div class="ui basic label role-label">
{{ctx.Locale.Tr "repo.issues.poster"}}
</div>
{{end}}
{{if (.ShowRole.HasRole "Writer")}}
<div class="ui basic label role-label">
{{ctx.Locale.Tr "repo.issues.collaborator"}}
</div>
{{end}}
{{if (.ShowRole.HasRole "Owner")}}
<div class="ui basic label role-label">
{{ctx.Locale.Tr "repo.issues.owner"}}
</div>
{{end}}