Lines 14-23
Link Here
|
14 |
[% ELSE %] |
14 |
[% ELSE %] |
15 |
[% SET DetailPage="detail.pl" %] |
15 |
[% SET DetailPage="detail.pl" %] |
16 |
[% END %] |
16 |
[% END %] |
|
|
17 |
<<<<<<< HEAD |
17 |
[% INCLUDE 'doc-head-open.inc' %] |
18 |
[% INCLUDE 'doc-head-open.inc' %] |
18 |
<title>Koha › Catalog › [% IF ( searchdesc ) %]Results of search [% IF ( query_desc ) %]for '[% query_desc | html %]'[% END %][% IF ( limit_desc ) %] with limit(s): '[% limit_desc | html %]'[% END %][% ELSE %]You did not specify any search criteria[% END %]</title> |
19 |
<title>Koha › Catalog › [% IF ( searchdesc ) %]Results of search [% IF ( query_desc ) %]for '[% query_desc | html %]'[% END %][% IF ( limit_desc ) %] with limit(s): '[% limit_desc | html %]'[% END %][% ELSE %]You did not specify any search criteria[% END %]</title> |
19 |
[% INCLUDE 'doc-head-close.inc' %] |
20 |
[% INCLUDE 'doc-head-close.inc' %] |
20 |
}); |
|
|
21 |
</head> |
21 |
</head> |
22 |
|
22 |
|
23 |
<body id="catalog_results" class="catalog"> |
23 |
<body id="catalog_results" class="catalog"> |
Lines 78-89
Link Here
|
78 |
<!-- RESULTS_PER_PAGE START --> |
78 |
<!-- RESULTS_PER_PAGE START --> |
79 |
<label for="results_per_page">Results per page: </label> |
79 |
<label for="results_per_page">Results per page: </label> |
80 |
<select id="results_per_page" name="results_per_page"> |
80 |
<select id="results_per_page" name="results_per_page"> |
81 |
<option value="20" [% 'SELECTED' IF results_per_page == '20' %]>20</option> |
81 |
[% IF results_per_page == '20' %]<option value="20" selected="selected">20</option>[% ELSE %]<option value="20">20</option>[% END %] |
82 |
<option value="40" [% 'SELECTED' IF results_per_page == '40' %]>40</option> |
82 |
[% IF results_per_page == '40' %]<option value="40" selected="selected">40</option>[% ELSE %]<option value="40">40</option>[% END %] |
83 |
<option value="60" [% 'SELECTED' IF results_per_page == '60' %]>60</option> |
83 |
[% IF results_per_page == '60' %]<option value="60" selected="selected">60</option>[% ELSE %]<option value="60">60</option>[% END %] |
84 |
<option value="80" [% 'SELECTED' IF results_per_page == '80' %]>80</option> |
84 |
[% IF results_per_page == '80' %]<option value="80" selected="selected">80</option>[% ELSE %]<option value="80">80</option>[% END %] |
85 |
<option value="100" [% 'SELECTED' IF results_per_page == '100' %]>100</option> |
85 |
[% IF results_per_page == '100' %]<option value="100" selected="selected">100</option>[% ELSE %]<option value="100">100</option>[% END %] |
86 |
<option value="all" [% 'SELECTED' IF results_per_page == 'all' %]>all</option> |
86 |
[% IF results_per_page == 'all' %]<option value="all" selected="selected">all</option>[% ELSE %]<option value="all">all</option>[% END %] |
87 |
</select> |
87 |
</select> |
88 |
<!-- RESULTS_PER_PAGE END --> |
88 |
<!-- RESULTS_PER_PAGE END --> |
89 |
<input type="submit" value="Go" /> |
89 |
<input type="submit" value="Go" /> |
90 |
- |
|
|