@(comments: List[model.IssueComment],
hasWritePermission: Boolean,
repository: service.RepositoryService.RepositoryInfo)(implicit context: app.Context)
@import context._
@import view.helpers._
@comments.map { comment =>
@if(comment.action != "close" && comment.action != "reopen" && comment.action != "merge"){
@avatar(comment.commentedUserName, 48)
}
@if(comment.action == "merge"){
Merged
@avatar(comment.commentedUserName, 20)
@comment.commentedUserName merged the pull request @datetime(comment.registeredDate)
}
@if(comment.action == "close" || comment.action == "close_comment"){
}
@if(comment.action == "reopen" || comment.action == "reopen_comment"){
}
}