|
Lines 1-6
Link Here
|
| 1 |
<!-- TMPL_INCLUDE NAME="doc-head-open.inc" --> |
1 |
<!-- TMPL_INCLUDE NAME="doc-head-open.inc" --> |
| 2 |
<title>Reading Record for <!-- TMPL_VAR NAME="firstname" --> <!-- TMPL_VAR NAME="surname" --></title> |
2 |
<title>Reading Record for <!-- TMPL_VAR NAME="firstname" --> <!-- TMPL_VAR NAME="surname" --></title> |
| 3 |
<!-- TMPL_INCLUDE NAME="doc-head-close.inc" --> |
3 |
<!-- TMPL_INCLUDE NAME="doc-head-close.inc" --> |
|
|
4 |
<script type="text/javascript" src="<!-- TMPL_VAR name="themelang" -->/lib/jquery/plugins/jquery.tablesorter.min.js"></script> |
| 5 |
<script type="text/javascript" src="<!-- TMPL_VAR name="themelang" -->/lib/jquery/plugins/jquery.tablesorter.pager.js"></script> |
| 6 |
<script type="text/javascript" id="js">$(document).ready(function() { |
| 7 |
$("#table_readingrec").tablesorter({ |
| 8 |
sortList: [[1,0]], |
| 9 |
}).tablesorterPager({container: $("#pagertable_readingrec"),positionFixed: false,size: 20}); |
| 10 |
}); </script> |
| 4 |
</head> |
11 |
</head> |
| 5 |
<body> |
12 |
<body> |
| 6 |
<!-- TMPL_INCLUDE NAME="header.inc" --> |
13 |
<!-- TMPL_INCLUDE NAME="header.inc" --> |
|
Lines 19-26
Link Here
|
| 19 |
<p><!-- TMPL_IF NAME="showfulllink" -->Showing All Items | |
26 |
<p><!-- TMPL_IF NAME="showfulllink" -->Showing All Items | |
| 20 |
<a href="readingrec.pl?borrowernumber=<!-- TMPL_VAR name="borrowernumber" -->&limit=50">Show Last 50 Items Only</a> <!-- TMPL_ELSE --> Showing Last 50 Items | |
27 |
<a href="readingrec.pl?borrowernumber=<!-- TMPL_VAR name="borrowernumber" -->&limit=50">Show Last 50 Items Only</a> <!-- TMPL_ELSE --> Showing Last 50 Items | |
| 21 |
<a href="readingrec.pl?borrowernumber=<!-- TMPL_VAR name="borrowernumber" -->&limit=full">Show All Items</a><!-- /TMPL_IF --></p> |
28 |
<a href="readingrec.pl?borrowernumber=<!-- TMPL_VAR name="borrowernumber" -->&limit=full">Show All Items</a><!-- /TMPL_IF --></p> |
| 22 |
<table> |
29 |
<span id="pagertable_readingrec" class="pager"> |
| 23 |
<tr> |
30 |
<form class="formpager"> <strong>page(s)</strong> : |
|
|
31 |
<img src="<!-- TMPL_VAR name="interface" -->/prog/img/first.png" class="first"/> |
| 32 |
<img src="<!-- TMPL_VAR name="interface" -->/prog/img/prev.png" class="prev"/> |
| 33 |
<input type="text" size="5" class="pagedisplay"/> |
| 34 |
<img src="<!-- TMPL_VAR name="interface" -->/prog/img/next.png" class="next"/> |
| 35 |
<img src="<!-- TMPL_VAR name="interface" -->/prog/img/last.png" class="last"/> |
| 36 |
, entries/page : |
| 37 |
<select class="pagesize"> |
| 38 |
<option value="10">10</option> |
| 39 |
<option selected="selected" value="20">20</option> |
| 40 |
<option value="30">30</option> |
| 41 |
<option value="40">40</option> |
| 42 |
<option value="50">50</option> |
| 43 |
<option value="100">100</option> |
| 44 |
</select> |
| 45 |
</form> |
| 46 |
</span> |
| 47 |
<table id="table_readingrec"> |
| 48 |
<thead> |
| 24 |
<th> |
49 |
<th> |
| 25 |
<a href="readingrec.pl?borrowernumber=<!-- TMPL_VAR name="borrowernumber" -->&order=issuestimestamp&limit=<!-- TMPL_VAR name="limit" -->">Date</a> |
50 |
<a href="readingrec.pl?borrowernumber=<!-- TMPL_VAR name="borrowernumber" -->&order=issuestimestamp&limit=<!-- TMPL_VAR name="limit" -->">Date</a> |
| 26 |
</th> |
51 |
</th> |
|
Lines 39-45
Link Here
|
| 39 |
<th> |
64 |
<th> |
| 40 |
<a href="readingrec.pl?borrowernumber=<!-- TMPL_VAR name="borrowernumber" -->&order=returndate%20DESC&limit=<!-- TMPL_VAR name="limit" -->">Return Date</a> |
65 |
<a href="readingrec.pl?borrowernumber=<!-- TMPL_VAR name="borrowernumber" -->&order=returndate%20DESC&limit=<!-- TMPL_VAR name="limit" -->">Return Date</a> |
| 41 |
</th> |
66 |
</th> |
| 42 |
</tr> |
67 |
</thead> |
| 43 |
<!-- TMPL_LOOP name="loop_reading" --> |
68 |
<!-- TMPL_LOOP name="loop_reading" --> |
| 44 |
<!-- TMPL_UNLESS NAME="__odd__" --> |
69 |
<!-- TMPL_UNLESS NAME="__odd__" --> |
| 45 |
<!-- TMPL_IF NAME="returndate" --><tr class="highlight"><!-- TMPL_ELSE --><tr class="highlight onissue"><!-- /TMPL_IF --> |
70 |
<!-- TMPL_IF NAME="returndate" --><tr class="highlight"><!-- TMPL_ELSE --><tr class="highlight onissue"><!-- /TMPL_IF --> |
| 46 |
- |
|
|