@(labels: List[gitbucket.core.model.Label], counts: Map[String, Int], repository: gitbucket.core.service.RepositoryService.RepositoryInfo, hasWritePermission: Boolean)(implicit context: gitbucket.core.controller.Context) @import context._ @import gitbucket.core.view.helpers._ @html.main(s"Labels - ${repository.owner}/${repository.name}"){ @html.menu("issues", repository){ @issues.html.navigation("labels", hasWritePermission, repository)
@labels.map { label => @gitbucket.core.issues.labels.html.label(label, counts, repository, hasWritePermission) } @if(labels.isEmpty){ }
@labels.size labels
No labels to show. @if(hasWritePermission){ Click on the "New Label" button above to create one. }
} }