2024-03-03 18:02:51 -07:00
|
|
|
{{$paginationParams := .Page.GetParams}}
|
|
|
|
{{$paginationLink := $.Link}}
|
|
|
|
{{if eq $paginationLink AppSubUrl}}{{$paginationLink = print $paginationLink "/"}}{{end}}
|
2019-04-19 22:15:19 -06:00
|
|
|
{{with .Page.Paginater}}
|
2016-03-11 13:33:12 -07:00
|
|
|
{{if gt .TotalPages 1}}
|
|
|
|
<div class="center page buttons">
|
|
|
|
<div class="ui borderless pagination menu">
|
2024-03-03 18:02:51 -07:00
|
|
|
<a class="{{if .IsFirst}}disabled{{end}} item navigation" {{if not .IsFirst}}href="{{$paginationLink}}{{if $paginationParams}}?{{$paginationParams}}{{end}}"{{end}}>
|
2023-02-13 10:59:59 -07:00
|
|
|
{{svg "gitea-double-chevron-left" 16 "gt-mr-2"}}
|
2023-09-25 02:56:50 -06:00
|
|
|
<span class="navigation_label">{{ctx.Locale.Tr "admin.first_page"}}</span>
|
2020-12-09 12:03:19 -07:00
|
|
|
</a>
|
2024-03-03 18:02:51 -07:00
|
|
|
<a class="{{if not .HasPrevious}}disabled{{end}} item navigation" {{if .HasPrevious}}href="{{$paginationLink}}?page={{.Previous}}{{if $paginationParams}}&{{$paginationParams}}{{end}}"{{end}}>
|
2023-02-13 10:59:59 -07:00
|
|
|
{{svg "octicon-chevron-left" 16 "gt-mr-2"}}
|
2023-09-25 02:56:50 -06:00
|
|
|
<span class="navigation_label">{{ctx.Locale.Tr "repo.issues.previous"}}</span>
|
2016-03-11 13:33:12 -07:00
|
|
|
</a>
|
|
|
|
{{range .Pages}}
|
|
|
|
{{if eq .Num -1}}
|
|
|
|
<a class="disabled item">...</a>
|
|
|
|
{{else}}
|
2024-03-04 22:29:32 -07:00
|
|
|
<a class="{{if .IsCurrent}}active {{end}}item tw-content-center" {{if not .IsCurrent}}href="{{$paginationLink}}?page={{.Num}}{{if $paginationParams}}&{{$paginationParams}}{{end}}"{{end}}>{{.Num}}</a>
|
2016-03-11 13:33:12 -07:00
|
|
|
{{end}}
|
|
|
|
{{end}}
|
2024-03-03 18:02:51 -07:00
|
|
|
<a class="{{if not .HasNext}}disabled{{end}} item navigation" {{if .HasNext}}href="{{$paginationLink}}?page={{.Next}}{{if $paginationParams}}&{{$paginationParams}}{{end}}"{{end}}>
|
2023-09-25 02:56:50 -06:00
|
|
|
<span class="navigation_label">{{ctx.Locale.Tr "repo.issues.next"}}</span>
|
2023-02-13 10:59:59 -07:00
|
|
|
{{svg "octicon-chevron-right" 16 "gt-ml-2"}}
|
2020-12-09 12:03:19 -07:00
|
|
|
</a>
|
2024-03-03 18:02:51 -07:00
|
|
|
<a class="{{if .IsLast}}disabled{{end}} item navigation" {{if not .IsLast}}href="{{$paginationLink}}?page={{.TotalPages}}{{if $paginationParams}}&{{$paginationParams}}{{end}}"{{end}}>
|
2023-09-25 02:56:50 -06:00
|
|
|
<span class="navigation_label">{{ctx.Locale.Tr "admin.last_page"}}</span>
|
2023-02-13 10:59:59 -07:00
|
|
|
{{svg "gitea-double-chevron-right" 16 "gt-ml-2"}}
|
2016-03-11 13:33:12 -07:00
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
2016-07-23 11:08:22 -06:00
|
|
|
{{end}}
|