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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/admin-items-search-field-form.inc (-5 / +5 lines)
Lines 1-6 Link Here
1
<ul>
1
<ul>
2
  <li>
2
  <li>
3
    <label for="name">Name</label>
3
    <label for="name">Name:</label>
4
    [% IF field %]
4
    [% IF field %]
5
      <input type="text" name="name" value="[% field.name %]" disabled="disabled">
5
      <input type="text" name="name" value="[% field.name %]" disabled="disabled">
6
      <input type="hidden" name="name" value="[% field.name %]">
6
      <input type="hidden" name="name" value="[% field.name %]">
Lines 9-15 Link Here
9
    [% END %]
9
    [% END %]
10
  </li>
10
  </li>
11
  <li>
11
  <li>
12
    <label for="label">Label</label>
12
    <label for="label">Label:</label>
13
    [% IF field %]
13
    [% IF field %]
14
      <input type="text" name="label" value="[% field.label %]" />
14
      <input type="text" name="label" value="[% field.label %]" />
15
    [% ELSE %]
15
    [% ELSE %]
Lines 17-23 Link Here
17
    [% END %]
17
    [% END %]
18
  </li>
18
  </li>
19
  <li>
19
  <li>
20
    <label for="tagfield">MARC field</label>
20
    <label for="tagfield">MARC field:</label>
21
    <select name="tagfield">
21
    <select name="tagfield">
22
      [% FOREACH tagfield IN ['001'..'999'] %]
22
      [% FOREACH tagfield IN ['001'..'999'] %]
23
        [% IF field && field.tagfield == tagfield %]
23
        [% IF field && field.tagfield == tagfield %]
Lines 29-35 Link Here
29
    </select>
29
    </select>
30
  </li>
30
  </li>
31
  <li>
31
  <li>
32
    <label for="tagsubfield">MARC subfield</label>
32
    <label for="tagsubfield">MARC subfield:</label>
33
    <select name="tagsubfield">
33
    <select name="tagsubfield">
34
      [% codes = [''] %]
34
      [% codes = [''] %]
35
      [% codes = codes.merge([0..9], ['a'..'z']) %]
35
      [% codes = codes.merge([0..9], ['a'..'z']) %]
Lines 43-49 Link Here
43
    </select>
43
    </select>
44
  </li>
44
  </li>
45
  <li>
45
  <li>
46
    <label for="authorised_values_category">Authorised values category</label>
46
    <label for="authorised_values_category">Authorised values category:</label>
47
    <select name="authorised_values_category">
47
    <select name="authorised_values_category">
48
      <option value="">- None -</option>
48
      <option value="">- None -</option>
49
      [% FOREACH category IN authorised_values_categories %]
49
      [% FOREACH category IN authorised_values_categories %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/supplier.tt (-2 / +2 lines)
Lines 16-29 Link Here
16
            <input type="text" size="40" id="contact_email[% contact.id %]" name="contact_email" value="[% contact.email %]" /></li>
16
            <input type="text" size="40" id="contact_email[% contact.id %]" name="contact_email" value="[% contact.email %]" /></li>
17
        <li><label for="contact_notes[% contact.id %]">Notes: </label>
17
        <li><label for="contact_notes[% contact.id %]">Notes: </label>
18
            <textarea id="contact_notes[% contact.id %]" name="contact_notes" cols="40" rows="4">[% contact.notes %]</textarea></li>
18
            <textarea id="contact_notes[% contact.id %]" name="contact_notes" cols="40" rows="4">[% contact.notes %]</textarea></li>
19
        <li><label for="contact_acqprimary[% contact.id %]">Primary acquisitions contact</label>
19
        <li><label for="contact_acqprimary[% contact.id %]">Primary acquisitions contact:</label>
20
            [% IF contact.acqprimary %]
20
            [% IF contact.acqprimary %]
21
                <input type="checkbox" id="contact_acqprimary[% contact.id %]" class="contact_acqprimary" checked="checked"></input>
21
                <input type="checkbox" id="contact_acqprimary[% contact.id %]" class="contact_acqprimary" checked="checked"></input>
22
            [% ELSE %]
22
            [% ELSE %]
23
                <input type="checkbox" id="contact_acqprimary[% contact.id %]" class="contact_acqprimary"></input>
23
                <input type="checkbox" id="contact_acqprimary[% contact.id %]" class="contact_acqprimary"></input>
24
            [% END %]
24
            [% END %]
25
            <input type="hidden" class="contact_acqprimary_hidden" name="contact_acqprimary" value="[% contact.acqprimary %]"></input>
25
            <input type="hidden" class="contact_acqprimary_hidden" name="contact_acqprimary" value="[% contact.acqprimary %]"></input>
26
        <li><label for="contact_serialsprimary[% contact.id %]">Primary serials contact</label>
26
        <li><label for="contact_serialsprimary[% contact.id %]">Primary serials contact:</label>
27
            [% IF contact.serialsprimary %]
27
            [% IF contact.serialsprimary %]
28
                <input type="checkbox" id="contact_serialsprimary[% contact.id %]" class="contact_serialsprimary" checked="checked"></input>
28
                <input type="checkbox" id="contact_serialsprimary[% contact.id %]" class="contact_serialsprimary" checked="checked"></input>
29
            [% ELSE %]
29
            [% ELSE %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/aqbudgets.tt (-1 / +1 lines)
Lines 663-669 If you delete this fund, all orders linked to this fund will be deleted! Link Here
663
        </li>
663
        </li>
664
        <li class="radio">
664
        <li class="radio">
665
665
666
        <label for="show_mine">Show my funds only</label>
666
        <label for="show_mine">Show my funds only:</label>
667
            [% IF ( show_mine ) %]
667
            [% IF ( show_mine ) %]
668
                <input type="checkbox" id="show_mine"  name="show_mine" value="1" checked="checked" />
668
                <input type="checkbox" id="show_mine"  name="show_mine" value="1" checked="checked" />
669
            [% ELSE %]
669
            [% ELSE %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/categorie.tt (-1 / +1 lines)
Lines 244-250 Link Here
244
                    <span>Select <i>All branches</i> if this category type must to be displayed all the time. Otherwise select libraries you want to associate with this value.
244
                    <span>Select <i>All branches</i> if this category type must to be displayed all the time. Otherwise select libraries you want to associate with this value.
245
                    </span>
245
                    </span>
246
                </li>
246
                </li>
247
                <li><label for="block_expired">Block expired patrons</label>
247
                <li><label for="block_expired">Block expired patrons:</label>
248
                    <select name="BlockExpiredPatronOpacActions" id="block_expired">
248
                    <select name="BlockExpiredPatronOpacActions" id="block_expired">
249
                        [% IF not category or category.BlockExpiredPatronOpacActions == -1%]
249
                        [% IF not category or category.BlockExpiredPatronOpacActions == -1%]
250
                            <option value="-1" selected="selected"> Follow system preference BlockExpiredPatronOpacActions </option>
250
                            <option value="-1" selected="selected"> Follow system preference BlockExpiredPatronOpacActions </option>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/itemtypes.tt (-1 / +1 lines)
Lines 129-135 Item types administration Link Here
129
          <a href="/cgi-bin/koha/admin/localization.pl?entity=itemtypes&code=[% itemtype %]" title="Translate item type [% itemtype %]" rel="gb_page_center[600,500]"><i class="icon-edit"></i> Translate into other languages</a>
129
          <a href="/cgi-bin/koha/admin/localization.pl?entity=itemtypes&code=[% itemtype %]" title="Translate item type [% itemtype %]" rel="gb_page_center[600,500]"><i class="icon-edit"></i> Translate into other languages</a>
130
      </li>
130
      </li>
131
      <li>
131
      <li>
132
          <span class="label">Search category</span>
132
          <span class="label">Search category:</span>
133
          <select id="searchcategory" name="searchcategory">
133
          <select id="searchcategory" name="searchcategory">
134
          <option value="">None</option>
134
          <option value="">None</option>
135
                [% FOREACH cat IN searchcategory %]
135
                [% FOREACH cat IN searchcategory %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/advsearch.tt (-2 / +2 lines)
Lines 76-82 Link Here
76
                    <a href="JavaScript:add_field();" id="ButtonPlus" title="Add another field">[+]</a>
76
                    <a href="JavaScript:add_field();" id="ButtonPlus" title="Add another field">[+]</a>
77
				[% END %]
77
				[% END %]
78
              [% IF ( search_box.scan_index ) %]
78
              [% IF ( search_box.scan_index ) %]
79
                <label for="scan">Scan indexes</label> <input type="checkbox" name="scan" id="scan" value="1" />
79
                <label for="scan">Scan indexes:</label> <input type="checkbox" name="scan" id="scan" value="1" />
80
              [% END %]
80
              [% END %]
81
            [% END %]
81
            [% END %]
82
		</div>
82
		</div>
Lines 232-238 Link Here
232
<!-- AVAILABILITY LIMITS -->
232
<!-- AVAILABILITY LIMITS -->
233
    <fieldset id="availability"><legend>Location and availability</legend>
233
    <fieldset id="availability"><legend>Location and availability</legend>
234
<fieldset id="currently-avail">
234
<fieldset id="currently-avail">
235
        <p><label for="available-items">Only items currently available</label> <input type="checkbox" id="available-items" name="limit" value="available" /></p>
235
        <p><label for="available-items">Only items currently available:</label> <input type="checkbox" id="available-items" name="limit" value="available" /></p>
236
</fieldset>
236
</fieldset>
237
237
238
<fieldset id="select-libs">
238
<fieldset id="select-libs">
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/labels/label-edit-batch.tt (-2 / +2 lines)
Lines 194-202 Link Here
194
                                    </li>
194
                                    </li>
195
                                    <li>
195
                                    <li>
196
                                        <input type="radio" name="number_type" id="barcode_enter" value="barcode" checked />
196
                                        <input type="radio" name="number_type" id="barcode_enter" value="barcode" checked />
197
                                        <label for="barcode_enter">Enter by barcode</label><br/>
197
                                        <label for="barcode_enter">Enter by barcode:</label><br/>
198
                                        <input type="radio" name="number_type" id="itemnum_enter" value="itemnumber" />
198
                                        <input type="radio" name="number_type" id="itemnum_enter" value="itemnumber" />
199
                                        <label for="itemnum_enter">Enter by itemnumber</label>
199
                                        <label for="itemnum_enter">Enter by itemnumber:</label>
200
                                    </li>
200
                                    </li>
201
                                    <li>
201
                                    <li>
202
                                        <label for="number_list">Add by barcode(s) or itemnumbers(s):
202
                                        <label for="number_list">Add by barcode(s) or itemnumbers(s):
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/memberentrygen.tt (-1 / +1 lines)
Lines 739-745 Link Here
739
			[% ELSE %]
739
			[% ELSE %]
740
            <label for="to">
740
            <label for="to">
741
			[% END %]
741
			[% END %]
742
			Expiry date (leave blank for auto calc) </label>
742
			Expiry date (leave blank for auto calc): </label>
743
            [% IF ( dateformat == "metric" ) %]
743
            [% IF ( dateformat == "metric" ) %]
744
				[% UNLESS ( opadd ) %]
744
				[% UNLESS ( opadd ) %]
745
                    <input type="text" id="to" name="dateexpiry" maxlength="10"  size="10" onchange="CheckDate(document.form.dateexpiry);check_manip_date('verify');" value="[% UNLESS opduplicate %][% dateexpiry %][% END %]" class="datepickerto" />
745
                    <input type="text" id="to" name="dateexpiry" maxlength="10"  size="10" onchange="CheckDate(document.form.dateexpiry);check_manip_date('verify');" value="[% UNLESS opduplicate %][% dateexpiry %][% END %]" class="datepickerto" />
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/acquisitions_stats.tt (-6 / +6 lines)
Lines 282-300 Link Here
282
    <legend> Cell value </legend>
282
    <legend> Cell value </legend>
283
    <ol>
283
    <ol>
284
        <li>
284
        <li>
285
            <label for="cellvalue1">Count items</label><input type="radio" name="Cellvalue" id="cellvalue1" value="1" checked="checked" />
285
            <label for="cellvalue1">Count items:</label><input type="radio" name="Cellvalue" id="cellvalue1" value="1" checked="checked" />
286
        </li>
286
        </li>
287
        <li>
287
        <li>
288
            <label for="cellvalue2">Count unique biblios</label><input type="radio" name="Cellvalue" id="cellvalue2" value="2" />
288
            <label for="cellvalue2">Count unique biblios:</label><input type="radio" name="Cellvalue" id="cellvalue2" value="2" />
289
        </li>
289
        </li>
290
        <li>
290
        <li>
291
            <label for="cellvalue3">Amount</label><input type="radio" name="Cellvalue" id="cellvalue3" value="3" />
291
            <label for="cellvalue3">Amount:</label><input type="radio" name="Cellvalue" id="cellvalue3" value="3" />
292
        </li>
292
        </li>
293
        <li>
293
        <li>
294
            <label for="cellvalue4">Ordered amount</label><input type="radio" name="Cellvalue" id="cellvalue4" value="4" />
294
            <label for="cellvalue4">Ordered amount:</label><input type="radio" name="Cellvalue" id="cellvalue4" value="4" />
295
        </li>
295
        </li>
296
        <li>
296
        <li>
297
            <label for="cellvalue5">Spent amount</label><input type="radio" name="Cellvalue" id="cellvalue5" value="5" />
297
            <label for="cellvalue5">Spent amount:</label><input type="radio" name="Cellvalue" id="cellvalue5" value="5" />
298
        </li>
298
        </li>
299
    </ol>
299
    </ol>
300
</fieldset>
300
</fieldset>
Lines 308-314 Link Here
308
        <li>
308
        <li>
309
            <label for="outputfile">To a file:</label> <input type="radio" name="output" value="file" id="outputfile" />
309
            <label for="outputfile">To a file:</label> <input type="radio" name="output" value="file" id="outputfile" />
310
            <label class="inline" for="basename">Named: </label> <input type="text" name="basename" id="basename" value="Export" />
310
            <label class="inline" for="basename">Named: </label> <input type="text" name="basename" id="basename" value="Export" />
311
            <label class="inline" for="MIME">Into an application</label>
311
            <label class="inline" for="MIME">Into an application:</label>
312
            <select name="MIME" id="MIME" size="1">
312
            <select name="MIME" id="MIME" size="1">
313
                <option value="CSV">CSV</option>
313
                <option value="CSV">CSV</option>
314
            </select>
314
            </select>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/borrowers_out.tt (-1 / +1 lines)
Lines 101-107 $(document).ready(function(){ Link Here
101
        <li>
101
        <li>
102
            <label for="outputfile">To a file:</label> <input type="radio" name="output" value="file" id="outputfile" />
102
            <label for="outputfile">To a file:</label> <input type="radio" name="output" value="file" id="outputfile" />
103
            <label class="inline" for="basename">Named: </label><input type="text" name="basename" id="basename" value="Export" />
103
            <label class="inline" for="basename">Named: </label><input type="text" name="basename" id="basename" value="Export" />
104
            <label class="inline" for="MIME">Into an application </label>
104
            <label class="inline" for="MIME">Into an application:</label>
105
            <select name="MIME" id="MIME" size="1">
105
            <select name="MIME" id="MIME" size="1">
106
            [% FOREACH value IN CGIextChoice %]
106
            [% FOREACH value IN CGIextChoice %]
107
                <option value="[% value %]">[% value %]</option>
107
                <option value="[% value %]">[% value %]</option>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/borrowers_stats.tt (-1 / +1 lines)
Lines 260-266 Link Here
260
        <li>
260
        <li>
261
            <label for="outputfile">To a file:</label> <input type="radio" name="output" value="file" id="outputfile" />
261
            <label for="outputfile">To a file:</label> <input type="radio" name="output" value="file" id="outputfile" />
262
            <label class="inline" for="basename">Named: </label><input type="text" name="basename" id="basename" value="Export" />
262
            <label class="inline" for="basename">Named: </label><input type="text" name="basename" id="basename" value="Export" />
263
            <label class="inline" for="MIME">Into an application</label>
263
            <label class="inline" for="MIME">Into an application:</label>
264
            <select name="MIME" id="MIME" size="1">
264
            <select name="MIME" id="MIME" size="1">
265
            [% FOREACH value IN CGIextChoice %]
265
            [% FOREACH value IN CGIextChoice %]
266
                <option value="[% value %]">[% value %]</option>
266
                <option value="[% value %]">[% value %]</option>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/cat_issues_top.tt (-1 / +1 lines)
Lines 171-177 Link Here
171
        <li>
171
        <li>
172
            <label for="outputfile">To a file:</label> <input type="radio" name="output" value="file" id="outputfile" />
172
            <label for="outputfile">To a file:</label> <input type="radio" name="output" value="file" id="outputfile" />
173
            <label class="inline" for="basename">Named: </label><input type="text" name="basename" id="basename" value="Export" />
173
            <label class="inline" for="basename">Named: </label><input type="text" name="basename" id="basename" value="Export" />
174
            <label class="inline" for="MIME">Into an application </label>
174
            <label class="inline" for="MIME">Into an application:</label>
175
            <select name="MIME" id="MIME" size="1">
175
            <select name="MIME" id="MIME" size="1">
176
            [% FOREACH value IN CGIextChoice %]
176
            [% FOREACH value IN CGIextChoice %]
177
                <option value="[% value %]">[% value %]</option>
177
                <option value="[% value %]">[% value %]</option>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/dictionary.tt (-1 / +1 lines)
Lines 120-126 Link Here
120
        <input type="hidden" name="phase" value="New Term step 3" />
120
        <input type="hidden" name="phase" value="New Term step 3" />
121
        <input type="hidden" name="definition_name" value="[% definition_name %]" />
121
        <input type="hidden" name="definition_name" value="[% definition_name %]" />
122
        <input type="hidden" name="definition_description" value="[% definition_description %]" />
122
        <input type="hidden" name="definition_description" value="[% definition_description %]" />
123
        <label for="area">Select table </label><select name="area" id="area">
123
        <label for="area">Select table:</label><select name="area" id="area">
124
      [%- FOREACH area IN areas -%]
124
      [%- FOREACH area IN areas -%]
125
        <option value="[%- area.id -%]">[%- PROCESS area_name area=area.id -%]</option>
125
        <option value="[%- area.id -%]">[%- PROCESS area_name area=area.id -%]</option>
126
      [%- END -%]
126
      [%- END -%]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt (-2 / +2 lines)
Lines 411-417 canned reports and writing custom SQL reports.</p> Link Here
411
<h1>Build a report</h1>
411
<h1>Build a report</h1>
412
<form action="/cgi-bin/koha/reports/guided_reports.pl">
412
<form action="/cgi-bin/koha/reports/guided_reports.pl">
413
<fieldset class="rows">
413
<fieldset class="rows">
414
<legend>Step 1 of 6: Choose a module to report on,[% IF (usecache) %] Set cache expiry, [% END %] and Choose report visibility </legend>
414
<legend>Step 1 of 6: Choose a module to report on,[% IF (usecache) %] Set cache expiry, [% END %] and choose report visibility </legend>
415
<ol>
415
<ol>
416
  <li>
416
  <li>
417
    <label for="area">Choose: </label>
417
    <label for="area">Choose: </label>
Lines 1097-1103 $("#column_submit").submit(function() { Link Here
1097
            [% END %]
1097
            [% END %]
1098
        </select>
1098
        </select>
1099
        <input type="radio" name="select_or_create_group" id="create_group" />
1099
        <input type="radio" name="select_or_create_group" id="create_group" />
1100
        <label for="create_group" style="float:none">or create</label>
1100
        <label for="create_group" style="float:none">or create:</label>
1101
        <input type="text" name="group" id="group_input" title="Group code" placeholder="Code" />
1101
        <input type="text" name="group" id="group_input" title="Group code" placeholder="Code" />
1102
        <input type="text" name="groupdesc" id="groupdesc_input" title="Group name" placeholder="Name" />
1102
        <input type="text" name="groupdesc" id="groupdesc_input" title="Group name" placeholder="Name" />
1103
    </li>
1103
    </li>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/issues_stats.tt (-3 / +3 lines)
Lines 249-256 Link Here
249
        </tbody>
249
        </tbody>
250
    </table><br /></fieldset>
250
    </table><br /></fieldset>
251
251
252
<fieldset class="rows"><legend>Cell value </legend><ol><li><label for="cellvalue1">Count total items</label> <input type="radio" name="Cellvalue" value="1" id="cellvalue1" checked="checked" /> </li>
252
<fieldset class="rows"><legend>Cell value </legend><ol><li><label for="cellvalue1">Count total items:</label> <input type="radio" name="Cellvalue" value="1" id="cellvalue1" checked="checked" /> </li>
253
            <li><label for="cellvalue3">Count unique items</label> <input type="radio" name="Cellvalue" id="cellvalue3" value="3" /> </li></ol></fieldset>
253
            <li><label for="cellvalue3">Count unique items:</label> <input type="radio" name="Cellvalue" id="cellvalue3" value="3" /> </li></ol></fieldset>
254
			
254
			
255
	<fieldset class="rows">
255
	<fieldset class="rows">
256
	<legend>Output</legend>
256
	<legend>Output</legend>
Lines 261-267 Link Here
261
        <li>
261
        <li>
262
            <label for="outputfile">To a file:</label> <input type="radio" name="output" value="file" id="outputfile" />
262
            <label for="outputfile">To a file:</label> <input type="radio" name="output" value="file" id="outputfile" />
263
            <label class="inline" for="basename">Named: </label><input type="text" name="basename" id="basename" value="Export" />
263
            <label class="inline" for="basename">Named: </label><input type="text" name="basename" id="basename" value="Export" />
264
            <label class="inline" for="MIME">Into an application</label>
264
            <label class="inline" for="MIME">Into an application:</label>
265
            <select name="MIME" id="MIME" size="1">
265
            <select name="MIME" id="MIME" size="1">
266
            [% FOREACH value IN CGIextChoice %]
266
            [% FOREACH value IN CGIextChoice %]
267
                <option value="[% value %]">[% value %]</option>
267
                <option value="[% value %]">[% value %]</option>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/itemtypes.tt (-1 / +1 lines)
Lines 61-67 $(document).ready(function(){ Link Here
61
          <fieldset class="rows">
61
          <fieldset class="rows">
62
            <ol>
62
            <ol>
63
              <li>
63
              <li>
64
                <label for="value">Select a library</label>
64
                <label for="value">Select a library:</label>
65
                <select name="value" size="1" id="value">
65
                <select name="value" size="1" id="value">
66
                  <option value=""></option>
66
                  <option value=""></option>
67
                [%- FOREACH branchloo IN branchloop %]
67
                [%- FOREACH branchloo IN branchloop %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/reserves_stats.tt (-3 / +3 lines)
Lines 327-334 Link Here
327
        </tbody>
327
        </tbody>
328
    </table><br /></fieldset>
328
    </table><br /></fieldset>
329
329
330
<fieldset class="rows"><legend>Cell value </legend><ol><li><label for="cellvalue1">Count holds</label> <input type="radio" name="Cellvalue" value="1" id="cellvalue1" checked="checked" /> </li>
330
<fieldset class="rows"><legend>Cell value </legend><ol><li><label for="cellvalue1">Count holds:</label> <input type="radio" name="Cellvalue" value="1" id="cellvalue1" checked="checked" /> </li>
331
            <li><label for="cellvalue2">Count unique borrowers</label> <input type="radio" name="Cellvalue" value="2" id="cellvalue2" /> </li><li><label for="cellvalue3">Count unique items</label> <input type="radio" name="Cellvalue" id="cellvalue3" value="3" /> </li><li><label for="cellvalue4">Count unique biblios</label> <input type="radio" name="Cellvalue" id="cellvalue4" value="4" /> </li></ol></fieldset>
331
            <li><label for="cellvalue2">Count unique borrowers:</label> <input type="radio" name="Cellvalue" value="2" id="cellvalue2" /> </li><li><label for="cellvalue3">Count unique items:</label> <input type="radio" name="Cellvalue" id="cellvalue3" value="3" /> </li><li><label for="cellvalue4">Count unique biblios:</label> <input type="radio" name="Cellvalue" id="cellvalue4" value="4" /> </li></ol></fieldset>
332
			
332
			
333
	<fieldset class="rows">
333
	<fieldset class="rows">
334
	<legend>Output</legend>
334
	<legend>Output</legend>
Lines 339-345 Link Here
339
        <li>
339
        <li>
340
            <label for="outputfile">To a file:</label> <input type="radio" name="output" value="file" id="outputfile" />
340
            <label for="outputfile">To a file:</label> <input type="radio" name="output" value="file" id="outputfile" />
341
            <label class="inline" for="basename">Named: </label><input type="text" name="basename" id="basename" value="Export" />
341
            <label class="inline" for="basename">Named: </label><input type="text" name="basename" id="basename" value="Export" />
342
            <label class="inline" for="MIME">Into an application</label>
342
            <label class="inline" for="MIME">Into an application:</label>
343
            <select name="MIME" id="MIME" size="1">
343
            <select name="MIME" id="MIME" size="1">
344
            [% FOREACH value IN CGIextChoice %]
344
            [% FOREACH value IN CGIextChoice %]
345
                <option value="[% value %]">[% value %]</option>
345
                <option value="[% value %]">[% value %]</option>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/serials_stats.tt (-1 / +1 lines)
Lines 120-126 Link Here
120
        <li>
120
        <li>
121
            <label for="outputfile">To a file:</label> <input type="radio" name="output" value="file" id="outputfile" />
121
            <label for="outputfile">To a file:</label> <input type="radio" name="output" value="file" id="outputfile" />
122
            <label class="inline" for="basename">Named: </label><input type="text" name="basename" id="basename" value="Export" />
122
            <label class="inline" for="basename">Named: </label><input type="text" name="basename" id="basename" value="Export" />
123
            <label class="inline" for="MIME">Into an application</label>
123
            <label class="inline" for="MIME">Into an application:</label>
124
            <select name="MIME" id="MIME" size="1">
124
            <select name="MIME" id="MIME" size="1">
125
            [% FOREACH value IN CGIextChoice %]
125
            [% FOREACH value IN CGIextChoice %]
126
                <option value="[% value %]">[% value %]</option>
126
                <option value="[% value %]">[% value %]</option>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/subscription-add.tt (-3 / +3 lines)
Lines 539-545 $(document).ready(function() { Link Here
539
                                  [% END %]
539
                                  [% END %]
540
                                </li>
540
                                </li>
541
                                <li>
541
                                <li>
542
                                    <label for="manualhistory">Manual history</label>
542
                                    <label for="manualhistory">Manual history:</label>
543
                                    [% IF (manualhistory) %]
543
                                    [% IF (manualhistory) %]
544
                                        <input type="checkbox" id="manualhistory" name="manualhist" checked="checked" />
544
                                        <input type="checkbox" id="manualhistory" name="manualhist" checked="checked" />
545
                                    [% ELSE %]
545
                                    [% ELSE %]
Lines 547-553 $(document).ready(function() { Link Here
547
                                    [% END %]
547
                                    [% END %]
548
                                </li>
548
                                </li>
549
                                <li>
549
                                <li>
550
                                    <label for="callnumber">Call number</label>
550
                                    <label for="callnumber">Call number:</label>
551
                                    <input type="text" name="callnumber" id="callnumber" value="[% callnumber %]" size="20" />
551
                                    <input type="text" name="callnumber" id="callnumber" value="[% callnumber %]" size="20" />
552
                                </li>
552
                                </li>
553
                                <li>
553
                                <li>
Lines 719-725 $(document).ready(function() { Link Here
719
                                        </select>
719
                                        </select>
720
                                    </li>
720
                                    </li>
721
                                    <li>
721
                                    <li>
722
                                        <label for="locale">Locale</label>
722
                                        <label for="locale">Locale:</label>
723
                                        <select id="locale" name="locale">
723
                                        <select id="locale" name="locale">
724
                                            <option value=""></option>
724
                                            <option value=""></option>
725
                                            [% FOREACH l IN locales %]
725
                                            [% FOREACH l IN locales %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/subscription-frequencies.tt (-4 / +4 lines)
Lines 110-116 $(document).ready(function() { Link Here
110
                <input type="text" id="description" name="description" value="[% description %]" />
110
                <input type="text" id="description" name="description" value="[% description %]" />
111
              </li>
111
              </li>
112
              <li>
112
              <li>
113
                <label for="unit">Unit</label>
113
                <label for="unit">Unit:</label>
114
                <select id="unit" name="unit">
114
                <select id="unit" name="unit">
115
                  <option value="">None</option>
115
                  <option value="">None</option>
116
                  [% FOREACH unit IN units_loop %]
116
                  [% FOREACH unit IN units_loop %]
Lines 126-132 $(document).ready(function() { Link Here
126
              </li>
126
              </li>
127
              <li><span class="hint">Note: one of the two following fields must be equal to 1</span></li>
127
              <li><span class="hint">Note: one of the two following fields must be equal to 1</span></li>
128
              <li>
128
              <li>
129
                <label for="issuesperunit">Issues per unit</label>
129
                <label for="issuesperunit">Issues per unit:</label>
130
                [% IF (new) %]
130
                [% IF (new) %]
131
                  <input type="text" id="issuesperunit" name="issuesperunit" value="1" size="3" />
131
                  <input type="text" id="issuesperunit" name="issuesperunit" value="1" size="3" />
132
                [% ELSE %]
132
                [% ELSE %]
Lines 134-140 $(document).ready(function() { Link Here
134
                [% END %]
134
                [% END %]
135
              </li>
135
              </li>
136
              <li>
136
              <li>
137
                <label for="unitsperissue">Units per issue</label>
137
                <label for="unitsperissue">Units per issue:</label>
138
                [% IF (new) %]
138
                [% IF (new) %]
139
                  <input type="text" id="unitsperissue" name="unitsperissue" value="1" size="3" />
139
                  <input type="text" id="unitsperissue" name="unitsperissue" value="1" size="3" />
140
                [% ELSE %]
140
                [% ELSE %]
Lines 142-148 $(document).ready(function() { Link Here
142
                [% END %]
142
                [% END %]
143
              </li>
143
              </li>
144
              <li>
144
              <li>
145
                <label for="displayorder">Display order</label>
145
                <label for="displayorder">Display order:</label>
146
                <input type="text" id="displayorder" name="displayorder" value="[% displayorder %]" size="3" />
146
                <input type="text" id="displayorder" name="displayorder" value="[% displayorder %]" size="3" />
147
              </li>
147
              </li>
148
            </ol>
148
            </ol>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/subscription-numberpatterns.tt (-1 / +1 lines)
Lines 211-217 function show_blocking_subs() { Link Here
211
                  </select>
211
                  </select>
212
                </li>
212
                </li>
213
                <li>
213
                <li>
214
                  <label for="firstacquidate">First issue publication date</label>
214
                  <label for="firstacquidate">First issue publication date:</label>
215
                  <input type="text" id="firstacquidate" class="datepicker" size="10" />
215
                  <input type="text" id="firstacquidate" class="datepicker" size="10" />
216
                </li>
216
                </li>
217
                <li>
217
                <li>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tags/review.tt (-3 / +3 lines)
Lines 330-338 tr > td input,td input[type="submit"] { font-size: 85%; padding: 1px; } Link Here
330
<fieldset class="brief">
330
<fieldset class="brief">
331
  <h4>Filters</h4>
331
  <h4>Filters</h4>
332
	<ol>
332
	<ol>
333
	    <li><label for="tag">Term</label> <input type="text" name="tag" id="tag" value="[% filter_tag %]" />
333
	    <li><label for="tag">Term:</label> <input type="text" name="tag" id="tag" value="[% filter_tag %]" />
334
	    </li>
334
	    </li>
335
	    <li><label for="approved">Status</label> 
335
	    <li><label for="approved">Status:</label> 
336
            <select name="approved" id="approved">
336
            <select name="approved" id="approved">
337
            [% IF ( filter_approved_all ) %]<option selected="selected" value="all">all</option>
337
            [% IF ( filter_approved_all ) %]<option selected="selected" value="all">all</option>
338
            [% ELSE %]<option value="all">all</option>[% END %]
338
            [% ELSE %]<option value="all">all</option>[% END %]
Lines 344-350 tr > td input,td input[type="submit"] { font-size: 85%; padding: 1px; } Link Here
344
            [% ELSE %]<option value="-1">rejected</option>[% END %]
344
            [% ELSE %]<option value="-1">rejected</option>[% END %]
345
			</select>
345
			</select>
346
	    </li>
346
	    </li>
347
	    <li><label for="approver">Reviewer</label> <input type="text" name="approver" id="approver" value="[% filter_approver %]" />
347
	    <li><label for="approver">Reviewer:</label> <input type="text" name="approver" id="approver" value="[% filter_approver %]" />
348
	    </li>
348
	    </li>
349
	    <li>
349
	    <li>
350
			<label for="from">Date: from </label>
350
			<label for="from">Date: from </label>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/csv-profiles.tt (-1 / +1 lines)
Lines 373-379 function reloadPage(p) { Link Here
373
                              <textarea cols="50" rows="2" name="profile_sql_content" id="modify_profile_sql_content">[% selected_profile_content %]</textarea>
373
                              <textarea cols="50" rows="2" name="profile_sql_content" id="modify_profile_sql_content">[% selected_profile_content %]</textarea>
374
                            </li>
374
                            </li>
375
375
376
						   <li class="radio"> <label for="delete">Delete selected profile ?</label>
376
						   <li class="radio"> <label for="delete">Delete selected profile?</label>
377
						    <input type="checkbox" name="delete" id="delete" /></li>
377
						    <input type="checkbox" name="delete" id="delete" /></li>
378
						    </ol>
378
						    </ol>
379
379
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/export.tt (-6 / +6 lines)
Lines 106-126 $(document).ready(function() { Link Here
106
    </legend>
106
    </legend>
107
        <ol>
107
        <ol>
108
        <li>File containing a list of biblio numbers with one biblio number per line. This list works as a filter: it is compatible with other parameters.</li>
108
        <li>File containing a list of biblio numbers with one biblio number per line. This list works as a filter: it is compatible with other parameters.</li>
109
        <li><label for="id_list_file">File : </label> <input type="file" id="id_list_file" name="id_list_file" /></li>
109
        <li><label for="id_list_file">File: </label> <input type="file" id="id_list_file" name="id_list_file" /></li>
110
        </ol>
110
        </ol>
111
    </fieldset>
111
    </fieldset>
112
    <fieldset class="rows">
112
    <fieldset class="rows">
113
    <legend> Options</legend>
113
    <legend> Options</legend>
114
<ol>        <li>
114
<ol>        <li>
115
        <label for="dont_export_item">Don't export items</label>
115
        <label for="dont_export_item">Don't export items:</label>
116
        <input id="dont_export_item" type="checkbox" name="dont_export_item" />
116
        <input id="dont_export_item" type="checkbox" name="dont_export_item" />
117
        </li>
117
        </li>
118
        <li>
118
        <li>
119
        <label for="strip_nonlocal_items">Remove non-local items</label>
119
        <label for="strip_nonlocal_items">Remove non-local items:</label>
120
        <input id="strip_nonlocal_items" type="checkbox" name="strip_nonlocal_items" />
120
        <input id="strip_nonlocal_items" type="checkbox" name="strip_nonlocal_items" />
121
        </li>
121
        </li>
122
        <li>
122
        <li>
123
        <label for="export_remove_fields">Don't export fields</label>
123
        <label for="export_remove_fields">Don't export fields:</label>
124
        <input id="export_remove_fields" type="text" name="export_remove_fields" value="[% export_remove_fields %]" />
124
        <input id="export_remove_fields" type="text" name="export_remove_fields" value="[% export_remove_fields %]" />
125
        separate by a blank. (e.g., 100a 200 606)
125
        separate by a blank. (e.g., 100a 200 606)
126
        </li></ol>
126
        </li></ol>
Lines 189-202 $(document).ready(function() { Link Here
189
    </legend>
189
    </legend>
190
        <ol>
190
        <ol>
191
        <li>File containing a list of authids with one authid per line. This list works as a filter: it is compatible with other parameters.</li>
191
        <li>File containing a list of authids with one authid per line. This list works as a filter: it is compatible with other parameters.</li>
192
        <li><label for="id_list_file">File : </label> <input type="file" id="id_list_file" name="id_list_file" /></li>
192
        <li><label for="id_list_file">File:</label> <input type="file" id="id_list_file" name="id_list_file" /></li>
193
        </ol>
193
        </ol>
194
    </fieldset>
194
    </fieldset>
195
    <fieldset class="rows">
195
    <fieldset class="rows">
196
    <legend>Options</legend>
196
    <legend>Options</legend>
197
        <ol>
197
        <ol>
198
        <li>
198
        <li>
199
            <label for="export_remove_fields">Don't export fields</label>
199
            <label for="export_remove_fields">Don't export fields:</label>
200
            <input id="export_remove_fields" type="text" name="export_remove_fields" />
200
            <input id="export_remove_fields" type="text" name="export_remove_fields" />
201
            separate by a blank. (e.g., 100a 200 606)
201
            separate by a blank. (e.g., 100a 200 606)
202
        </li></ol>
202
        </li></ol>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/koha-news.tt (-2 / +1 lines)
Lines 79-85 Edit news item[% ELSE %]Add news item[% END %][% ELSE %]News[% END %]</div> Link Here
79
			<fieldset class="rows">
79
			<fieldset class="rows">
80
            <legend>OPAC and Koha news</legend>
80
            <legend>OPAC and Koha news</legend>
81
           <ol> <li>
81
           <ol> <li>
82
            <label for="lang">Display location</label>
82
            <label for="lang">Display location:</label>
83
            <select id="lang" name="lang">
83
            <select id="lang" name="lang">
84
                [% IF ( default_lang == "" ) %]
84
                [% IF ( default_lang == "" ) %]
85
                <option value="" selected="selected">All</option>
85
                <option value="" selected="selected">All</option>
86
- 

Return to bug 15413