summaryrefslogtreecommitdiffstats
path: root/templates/repo/issue/view_content/show_role.tmpl
diff options
context:
space:
mode:
Diffstat (limited to 'templates/repo/issue/view_content/show_role.tmpl')
-rw-r--r--templates/repo/issue/view_content/show_role.tmpl15
1 files changed, 15 insertions, 0 deletions
diff --git a/templates/repo/issue/view_content/show_role.tmpl b/templates/repo/issue/view_content/show_role.tmpl
new file mode 100644
index 0000000000..f85f43bd66
--- /dev/null
+++ b/templates/repo/issue/view_content/show_role.tmpl
@@ -0,0 +1,15 @@
+{{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}}