Revision 1498deb73b762d977ea547ee3bf6d28141e16abf authored by Christoph Lehmann on 19 October 2021, 10:11:14 UTC, committed by Christoph Lehmann on 19 October 2021, 10:11:14 UTC
Fix linking nlohmann_json

See merge request ogs/ogs!3851
2 parent s e296306 + 8458616
Raw File
pagination.html
<div>
  {{ if .Paginator.HasPrev }}
    <a href="{{ .Paginator.Prev.URL }}">Previous Page</a>
  {{ end }}
  {{ .Paginator.PageNumber }} of {{ .Paginator.TotalPages }}
  {{ if .Paginator.HasNext }}
    <a href="{{ .Paginator.Next.URL }}">Next Page</a>
  {{ end }}
  </div>
back to top