@(issues: List[(model.Issue, List[model.Label], Int)], page: Int, labels: List[model.Label], milestones: List[model.Milestone], openCount: Int, closedCount: Int, allCount: Int, assignedCount: Option[Int], createdByCount: Option[Int], labelCounts: Map[String, Int], condition: service.IssuesService.IssueSearchCondition, filter: String, repository: service.RepositoryService.RepositoryInfo, isWritable: Boolean)(implicit context: app.Context) @import context._ @import view.helpers._ @html.main("Issues - " + repository.owner + "/" + repository.name){ @html.header("issues", repository) @issuestab("issues", repository)
@issue.title
@labels.map { label =>
@label.labelName
}
#@issue.issueId
Opened by @issue.openedUserName @datetime(issue.registeredDate)
@if(commentCount == 1){
1 comment
}
@if(commentCount > 1){
@commentCount comments
}
|
No issues to show. @if(condition.labels.nonEmpty || condition.milestoneId.isDefined){ Clear active filters. } else { Create a new issue. } |