(refs #37)Add participants to issue detail

The design is inherited from Github.
This commit is contained in:
tomykaira
2013-07-21 18:22:13 +09:00
parent e54754d04f
commit 6e96ad0f17
3 changed files with 14 additions and 1 deletions

View File

@@ -1,5 +1,6 @@
@(issue: model.Issue,
comments: List[model.IssueComment],
participants: Set[String],
issueLabels: List[model.Label],
collaborators: List[String],
milestones: List[model.Milestone],
@@ -81,6 +82,10 @@
</div>
</div>
</div>
<div class="issue-participants">
@participants.size participants
@participants.map { participant => @avatar(participant, 20) }
</div>
@comments.map { comment =>
@if(comment.action != "close" && comment.action != "reopen"){
<div class="issue-avatar-image">@avatar(comment.commentedUserName, 48)</div>