summaryrefslogtreecommitdiffstats
path: root/templates/repo/issue
diff options
context:
space:
mode:
authorKim "BKC" Carlbäcker <kim.carlbacker@gmail.com>2016-01-19 14:04:24 +0100
committerKim "BKC" Carlbäcker <kim.carlbacker@gmail.com>2016-01-26 17:55:54 +0100
commit2cc1ee3fc0573c3b7c895cb8ed16a74d710873bc (patch)
tree47a73e94c0cf8e1999ed42f381d6953767ed75c4 /templates/repo/issue
parentab0ba4bbae121c9ba3cf0d49efc1c90ef7bb3ddc (diff)
downloadgitea-2cc1ee3fc0573c3b7c895cb8ed16a74d710873bc.tar.gz
gitea-2cc1ee3fc0573c3b7c895cb8ed16a74d710873bc.zip
Implemented participant-listing for issue-pages
Diffstat (limited to 'templates/repo/issue')
-rw-r--r--templates/repo/issue/view_content.tmpl13
1 files changed, 13 insertions, 0 deletions
diff --git a/templates/repo/issue/view_content.tmpl b/templates/repo/issue/view_content.tmpl
index c641d7a8ff..20baec0ef3 100644
--- a/templates/repo/issue/view_content.tmpl
+++ b/templates/repo/issue/view_content.tmpl
@@ -313,6 +313,19 @@
{{end}}
</div>
</div>
+
+ <div class="ui divider"></div>
+
+ <div class="ui participants floating jump">
+ <span class="text"><strong>{{len .Participants }} Participants</strong></span>
+ <div class="ui floating jump">
+ {{range .Participants}}
+ <a href="{{.HomeLink}}">
+ <img class="ui avatar image" src="{{.AvatarLink}}" data-title={{.FullName}}>
+ </a>
+ {{end}}
+ </div>
+ </div>
</div>
</div>
</div>