Lines 586-596
$(document).ready(function() { calcNewsuggTotal(); });
Link Here
|
586 |
<form name="suggestionfilter" action="suggestion.pl" method="get"> |
586 |
<form name="suggestionfilter" action="suggestion.pl" method="get"> |
587 |
<fieldset class="brief"><ol style="display:block;"><li><label for="displayby">Organize by: </label> |
587 |
<fieldset class="brief"><ol style="display:block;"><li><label for="displayby">Organize by: </label> |
588 |
<select name="displayby" id="displayby" style="width:auto;"> |
588 |
<select name="displayby" id="displayby" style="width:auto;"> |
589 |
<option value="STATUS">Status</option> |
589 |
[% IF ( displayby == "STATUS" ) %] |
590 |
<option value="branchcode">Library</option> |
590 |
<option value="STATUS" selected="selected">Status</option> |
591 |
<option value="itemtype">Item type</option> |
591 |
[% ELSE %] |
592 |
<option value="managedby">Managed by</option> |
592 |
<option value="STATUS">Status</option> |
593 |
<option value="acceptedby">Accepted by</option> |
593 |
[% END %] |
|
|
594 |
[% IF ( displayby == "branchcode" ) %] |
595 |
<option value="branchcode" selected="selected">Library</option> |
596 |
[% ELSE %] |
597 |
<option value="branchcode">Library</option> |
598 |
[% END %] |
599 |
[% IF ( displayby == "itemtype" ) %] |
600 |
<option value="itemtype" selected="selected">Item type</option> |
601 |
[% ELSE %] |
602 |
<option value="itemtype">Item type</option> |
603 |
[% END %] |
604 |
[% IF ( displayby == "managedby" ) %] |
605 |
<option value="managedby" selected="selected">Managed by</option> |
606 |
[% ELSE %] |
607 |
<option value="managedby">Managed by</option> |
608 |
[% END %] |
609 |
[% IF ( displayby == "acceptedby" ) %] |
610 |
<option value="acceptedby" selected="selected">Accepted by</option> |
611 |
[% ELSE %] |
612 |
<option value="acceptedby">Accepted by</option> |
613 |
[% END %] |
594 |
</select> <input type="submit" value="Go" /></li></ol></fieldset> |
614 |
</select> <input type="submit" value="Go" /></li></ol></fieldset> |
595 |
<h4>Filter by: <a style="font-size:80%;font-weight:normal;" href="/cgi-bin/koha/suggestion/suggestion.pl">[clear]</a></h4> |
615 |
<h4>Filter by: <a style="font-size:80%;font-weight:normal;" href="/cgi-bin/koha/suggestion/suggestion.pl">[clear]</a></h4> |
596 |
<div style="display:block;" id="limits"> |
616 |
<div style="display:block;" id="limits"> |
597 |
- |
|
|