Merge pull request #1410 from manfer/issues-pagination-only-if-needed

Show pagination only if needed on repo issues page
tokarchuk/v1.17
无闻 9 years ago
commit 3ff708b749
  1. 4
      templates/repo/issue/list.tmpl

@ -87,6 +87,7 @@
{{end}}
{{with .Page}}
{{if gt .Total 1}}
<div class="center page buttons">
<div class="ui borderless pagination menu">
<a class="{{if not .HasPrevious}}disabled{{end}} item" {{if .HasPrevious}}href="{{$.RepoLink}}/issues?type={{$.ViewType}}&state={{$.State}}&labels={{$.SelectLabels}}&page={{.Previous}}"{{end}}>
@ -105,7 +106,8 @@
</div>
</div>
{{end}}
{{end}}
</div>
</div>
</div>
{{template "base/footer" .}}
{{template "base/footer" .}}

Loading…
Cancel
Save