Newer
Older
GitBucket / src / main / twirl / gitbucket / core / dashboard / pulls.scala.html
@Naoki Takezoe Naoki Takezoe on 19 Jun 2018 779 bytes Fix sidebar to recent repositories
@(issues: List[gitbucket.core.service.IssuesService.IssueInfo],
  page: Int,
  openCount: Int,
  closedCount: Int,
  condition: gitbucket.core.service.IssuesService.IssueSearchCondition,
  filter: String,
  groups: List[String],
  recentRepositories: List[gitbucket.core.service.RepositoryService.RepositoryInfo])(implicit context: gitbucket.core.controller.Context)
@gitbucket.core.html.main("Pull requests"){
  @gitbucket.core.dashboard.html.sidebar(recentRepositories){
    @gitbucket.core.dashboard.html.tab("pulls")
    <div class="container">
      @gitbucket.core.dashboard.html.issuesnavi("pulls", filter, openCount, closedCount, condition)
      @gitbucket.core.dashboard.html.issueslist(issues, page, openCount, closedCount, condition, filter, groups)
    </div>
  }
}