2022-05-21 17:18:17 +00:00
|
|
|
{{ define "pagination" }}
|
2022-05-26 13:27:25 +00:00
|
|
|
{{ if or .PrevPage .NextPage }}
|
|
|
|
<div class="ui labeled icon menu">
|
|
|
|
{{ if .PrevPage -}}
|
|
|
|
<a class="item"
|
|
|
|
href="?after={{ .PrevPage }}{{ if eq .ActiveSubNav "unvoted-motions" }}&unvoted=1{{ end }}"
|
|
|
|
title="newer motions">
|
|
|
|
<i class="left arrow icon"></i> newer
|
|
|
|
</a>
|
|
|
|
{{- end }}
|
|
|
|
{{ if .NextPage -}}
|
|
|
|
<a class="right item"
|
|
|
|
href="?before={{ .NextPage }}{{ if eq .ActiveSubNav "unvoted-motions" }}&unvoted=1{{ end }}"
|
|
|
|
title="older motions">
|
|
|
|
<i class="right arrow icon"></i> older
|
|
|
|
</a>
|
|
|
|
{{- end }}
|
|
|
|
</div>
|
|
|
|
{{ end }}
|
2022-05-21 17:18:17 +00:00
|
|
|
{{ end }}
|