diff options
author | Kim "BKC" Carlbäcker <kim.carlbacker@gmail.com> | 2016-01-19 14:04:24 +0100 |
---|---|---|
committer | Kim "BKC" Carlbäcker <kim.carlbacker@gmail.com> | 2016-01-26 17:55:54 +0100 |
commit | 2cc1ee3fc0573c3b7c895cb8ed16a74d710873bc (patch) | |
tree | 47a73e94c0cf8e1999ed42f381d6953767ed75c4 /templates/repo/issue | |
parent | ab0ba4bbae121c9ba3cf0d49efc1c90ef7bb3ddc (diff) | |
download | gitea-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.tmpl | 13 |
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> |