View | Details | Raw Unified | Return to bug 13618
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/admin-items-search-field-form.inc (-1 / +1 lines)
Lines 36-42 Link Here
36
  <li>
36
  <li>
37
    <label for="tagsubfield">MARC subfield: </label>
37
    <label for="tagsubfield">MARC subfield: </label>
38
    <select id="tagsubfield" name="tagsubfield">
38
    <select id="tagsubfield" name="tagsubfield">
39
      [% codes = [''] | html %]
39
      [% codes = [''] %]
40
      [% codes = codes.merge([0..9], ['a'..'z']) | html %]
40
      [% codes = codes.merge([0..9], ['a'..'z']) | html %]
41
      [% FOREACH tagsubfield IN codes %]
41
      [% FOREACH tagsubfield IN codes %]
42
        [% IF field && field.tagsubfield == tagsubfield %]
42
        [% IF field && field.tagsubfield == tagsubfield %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/edi_accounts.tt (-1 / +1 lines)
Lines 100-106 Link Here
100
     <input type="text" name="description" id="description" size="20" value="[% account.description | html %]" />
100
     <input type="text" name="description" id="description" size="20" value="[% account.description | html %]" />
101
  </li>
101
  </li>
102
  <li>
102
  <li>
103
     [% transport_types = [ 'FTP', 'SFTP', 'FILE' ] | html %]
103
     [% transport_types = [ 'FTP', 'SFTP', 'FILE' ] %]
104
     <label for="transport">Transport: </label>
104
     <label for="transport">Transport: </label>
105
     <select name="transport" title="valid types of transport are FTP and SFTP"
105
     <select name="transport" title="valid types of transport are FTP and SFTP"
106
      id="transport">
106
      id="transport">
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt (-1 / +1 lines)
Lines 711-717 canned reports and writing custom SQL reports.</p> Link Here
711
711
712
    <label for="limit">Rows per page: </label>
712
    <label for="limit">Rows per page: </label>
713
    <select name="limit" id="limit">
713
    <select name="limit" id="limit">
714
        [% limits = [ 10, 20, 50, 100, 200, 300, 400, 500, 1000 ] | html %]
714
        [% limits = [ 10, 20, 50, 100, 200, 300, 400, 500, 1000 ] %]
715
        [% FOREACH l IN limits %]
715
        [% FOREACH l IN limits %]
716
                [% IF l == limit %]
716
                [% IF l == limit %]
717
                    <option value="[% l | html %]" selected="selected">[% l | html %]</option>
717
                    <option value="[% l | html %]" selected="selected">[% l | html %]</option>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/routing.tt (-1 / +1 lines)
Lines 47-53 Link Here
47
            <tr><td>[% member.name | html %]</td>
47
            <tr><td>[% member.name | html %]</td>
48
                <td>
48
                <td>
49
                    <select name="itemrank" class="itemrank" data-subscriptionid="[% subscriptionid | html %]" data-routingid="[% member.routingid | html %]">
49
                    <select name="itemrank" class="itemrank" data-subscriptionid="[% subscriptionid | html %]" data-routingid="[% member.routingid | html %]">
50
                    [% rankings = [1 .. m_loop.size] | html %]
50
                    [% rankings = [1 .. m_loop.size] %]
51
                    [% FOREACH r IN rankings %]
51
                    [% FOREACH r IN rankings %]
52
                        [% IF r == member.ranking %]
52
                        [% IF r == member.ranking %]
53
                          <option selected="selected" value="[% r | html %]">[% r | html %]</option>
53
                          <option selected="selected" value="[% r | html %]">[% r | html %]</option>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/serials-search.tt (-1 / +1 lines)
Lines 18-24 Link Here
18
18
19
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; [% IF ( done_searched ) %]<a href="/cgi-bin/koha/serials/serials-home.pl">Serials</a> &rsaquo; Search results[% ELSE %]Serials [% END %] </div>
19
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; [% IF ( done_searched ) %]<a href="/cgi-bin/koha/serials/serials-home.pl">Serials</a> &rsaquo; Search results[% ELSE %]Serials [% END %] </div>
20
20
21
[% url_params = [] | html %]
21
[% url_params = [] %]
22
[% FOREACH param IN CGI.params.pairs %]
22
[% FOREACH param IN CGI.params.pairs %]
23
    [% escaped_value = BLOCK %][% param.value | uri %][% END %]
23
    [% escaped_value = BLOCK %][% param.value | uri %][% END %]
24
    [% url_params.push(param.key _ '=' _ escaped_value) | html %]
24
    [% url_params.push(param.key _ '=' _ escaped_value) | html %]
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-reserve.tt (-2 / +1 lines)
Lines 272-278 Link Here
272
                                                        </li>
272
                                                        </li>
273
273
274
                                                        [% IF Koha.Preference('AllowHoldItemTypeSelection') %]
274
                                                        [% IF Koha.Preference('AllowHoldItemTypeSelection') %]
275
                                                            [% itemtypes = [] | html %]
275
                                                            [% itemtypes = [] %]
276
                                                            [% FOREACH item IN bibitemloo.itemLoop %]
276
                                                            [% FOREACH item IN bibitemloo.itemLoop %]
277
                                                                [% itemtypes.push( item.itype ) | html %]
277
                                                                [% itemtypes.push( item.itype ) | html %]
278
                                                            [%- END %]
278
                                                            [%- END %]
279
- 

Return to bug 13618