-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathnavigate-results.rsp
31 lines (31 loc) · 988 Bytes
/
navigate-results.rsp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<%
last-page: ceil count / params/results
%>
<br>
<center>
<input
type="button"
value="<<"
onclick="f=document.getElementById('list');f.action.value='navigate';f.page.value='<%=1%>';f.submit();"
<%if params/page < 3 [prin "disabled"]%>
>
<input
type="button"
value=" < "
onclick="f=document.getElementById('list');f.action.value='navigate';f.page.value='<%=params/page - 1%>';f.submit();"
<%if params/page = 1 [prin "disabled"]%>
>
<%=params/page%> / <%=last-page: ceil count / params/results%>
<input
type="button"
value=" > "
onclick="f=document.getElementById('list');f.action.value='navigate';f.page.value='<%=params/page + 1%>';f.submit();"
<%if params/page = last-page [prin "disabled"]%>
>
<input
type="button"
value=">>"
onclick="f=document.getElementById('list');f.action.value='navigate';f.page.value='<%=last-page%>';f.submit();"
<%if params/page > (last-page - 2) [prin "disabled"]%>
>
</center>