|
Lines 1-6
Link Here
|
| 1 |
[% INCLUDE 'doc-head-open.inc' %] |
1 |
[% INCLUDE 'doc-head-open.inc' %] |
| 2 |
<title>Koha › Choose Adult category</title> |
2 |
<title>Koha › Choose Adult category</title> |
| 3 |
[% INCLUDE 'doc-head-close.inc' %] |
3 |
[% INCLUDE 'doc-head-close.inc' %] |
|
|
4 |
<script type="text/javascript" src="[% themelang %]/lib/jquery/plugins/jquery.tablesorter.min.js"></script> |
| 5 |
<script type="text/javascript"> |
| 6 |
$(document).ready(function() { |
| 7 |
$.tablesorter.defaults.widgets = ['zebra']; |
| 8 |
$("#catst").tablesorter({ |
| 9 |
sortList: [[2,0]], |
| 10 |
headers: { 0: { sorter: false }} |
| 11 |
}); |
| 12 |
}); |
| 13 |
</script> |
| 4 |
<style type="text/css"> |
14 |
<style type="text/css"> |
| 5 |
#custom-doc { width:29em;*width:28.3em;min-width:377px; margin:auto; text-align:left; } |
15 |
#custom-doc { width:29em;*width:28.3em;min-width:377px; margin:auto; text-align:left; } |
| 6 |
</style> |
16 |
</style> |
|
Lines 41-52
window.close();
Link Here
|
| 41 |
|
51 |
|
| 42 |
<form method="post" action="update-child.pl"> |
52 |
<form method="post" action="update-child.pl"> |
| 43 |
<fieldset> |
53 |
<fieldset> |
| 44 |
<table> |
54 |
<table id="catst"> |
|
|
55 |
<thead> |
| 45 |
<tr> |
56 |
<tr> |
| 46 |
<th> </th> |
57 |
<th> </th> |
| 47 |
<th>Code</th> |
58 |
<th>Code</th> |
| 48 |
<th>Description</th> |
59 |
<th>Description</th> |
| 49 |
</tr> |
60 |
</tr> |
|
|
61 |
</thead> |
| 62 |
<tbody> |
| 50 |
[% FOREACH CAT_LOO IN CAT_LOOP %] |
63 |
[% FOREACH CAT_LOO IN CAT_LOOP %] |
| 51 |
<tr> |
64 |
<tr> |
| 52 |
<td> |
65 |
<td> |
|
Lines 55-60
window.close();
Link Here
|
| 55 |
<td><label for="catcode[% CAT_LOO.catcode %]"><strong>[% CAT_LOO.catdesc %]</strong></label></td> |
68 |
<td><label for="catcode[% CAT_LOO.catcode %]"><strong>[% CAT_LOO.catdesc %]</strong></label></td> |
| 56 |
</tr> |
69 |
</tr> |
| 57 |
[% END %] |
70 |
[% END %] |
|
|
71 |
</tbody> |
| 58 |
</table> |
72 |
</table> |
| 59 |
<input type="hidden" name="op" value="update" /> |
73 |
<input type="hidden" name="op" value="update" /> |
| 60 |
<input type="hidden" name="borrowernumber" value="[% borrowernumber %]" /> |
74 |
<input type="hidden" name="borrowernumber" value="[% borrowernumber %]" /> |
|
Lines 72-75
window.close();
Link Here
|
| 72 |
|
86 |
|
| 73 |
|
87 |
|
| 74 |
</div> |
88 |
</div> |
| 75 |
[% INCLUDE 'intranet-bottom.inc' %] |
89 |
[% INCLUDE 'popup-bottom.inc' %] |
| 76 |
- |
|
|