1
1
mirror of https://github.com/go-gitea/gitea synced 2024-07-04 17:15:49 +00:00
gitea/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}}