summaryrefslogtreecommitdiff
path: root/templates/_pagination2.html.ep
diff options
context:
space:
mode:
authorJannis M. Hoffmann <jannis.hoffmann@rwth-aachen.de>2020-10-29 12:13:04 +0100
committerJannis M. Hoffmann <jannis.hoffmann@rwth-aachen.de>2020-10-29 12:13:04 +0100
commitee43823179ee627ac16ea9da8168e5f1bf9619c0 (patch)
tree5e6c36d5629d2ce79f3cb1310998dc715a6f19c7 /templates/_pagination2.html.ep
Initial commit; Stable version
Diffstat (limited to 'templates/_pagination2.html.ep')
-rw-r--r--templates/_pagination2.html.ep19
1 files changed, 19 insertions, 0 deletions
diff --git a/templates/_pagination2.html.ep b/templates/_pagination2.html.ep
new file mode 100644
index 0000000..f838841
--- /dev/null
+++ b/templates/_pagination2.html.ep
@@ -0,0 +1,19 @@
+<a href="<%= url_with->query({start => $first_page->[0]-1}) %>"> <img src="/first.gif" alt="<%= l('first') . ' ' . l 'page' %>"></a>\
+<a href="<%= url_with->query({start => $prev_page->[0]-1}) %>"> <img src="/left.gif" alt="<%= l('previous') . ' ' . l 'page' %>"> </a>\
+
+<form>
+ [<label for=custompage><%= ucfirst l 'page' %></label>
+ <input type=number name=start id=custompage placeholder="<%= $current_page %>" size=3 />
+ <%= l 'of' %> <%= $total_pages %>]
+
+% my $h = $c->req->query_params->to_hash;
+% while (my ($k, $v) = each %$h) {
+% if ($k ne 'start') {
+ <input type=hidden name="<%=$k%>" value="<%=$v%>" />
+% }
+% }
+
+</form>\
+
+<a href="<%= url_with->query({start => $next_page->[0]-1}) %>"> <img src="/right.gif" alt="<%= l('next') . ' ' . l 'page' %>"> </a>\
+<a href="<%= url_with->query({start => $last_page->[0]-1}) %>"> <img src="/last.gif" alt="<%= l('last') . ' ' . l('page') %>"> </a> \ No newline at end of file