| |
---|
| | <a href="@url(repository)/issues/@issue.issueId" class="issue-title">@issue.title</a> |
---|
| | @labels.map { label => |
---|
| | <span class="label-color small" style="background-color: #@label.color; color: #@label.fontColor; padding-left: 4px; padding-right: 4px">@label.labelName</span> |
---|
| | } |
---|
| | <span class="pull-right muted">#@issue.issueId</span> |
---|
| | <span class="pull-right muted"> |
---|
| | @issue.assignedUserName.map { userName => |
---|
| | @helper.html.avatar(userName, 20, true) |
---|
| | } |
---|
| | #@issue.issueId |
---|
| | </span> |
---|
| | <div class="small muted"> |
---|
| | Opened by <a href="@url(issue.openedUserName)" class="username">@issue.openedUserName</a> @datetime(issue.registeredDate) |
---|
| | @if(commentCount > 0){ |
---|
| | <i class="icon-comment"></i><a href="@url(repository)/issues/@issue.issueId" class="issue-comment-count">@commentCount @plural(commentCount, "comment")</a> |
---|
| |
---|
| | |