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

(-)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 664-670 var MSG_PARENT_BENEATH_BUDGET = "- " + _("New budget-parent is beneath budget") Link Here
664
        </li>
664
        </li>
665
        <li class="radio">
665
        <li class="radio">
666
666
667
        <label for="show_mine">Show my funds only</label>
667
        <label for="show_mine">Show my funds only:</label>
668
            [% IF ( show_mine ) %]
668
            [% IF ( show_mine ) %]
669
                <input type="checkbox" id="show_mine"  name="show_mine" value="1" checked="checked" />
669
                <input type="checkbox" id="show_mine"  name="show_mine" value="1" checked="checked" />
670
            [% ELSE %]
670
            [% ELSE %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/categories.tt (-1 / +1 lines)
Lines 252-258 Link Here
252
                    <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.
252
                    <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.
253
                    </span>
253
                    </span>
254
                </li>
254
                </li>
255
                <li><label for="block_expired">Block expired patrons</label>
255
                <li><label for="block_expired">Block expired patrons:</label>
256
                    <select name="BlockExpiredPatronOpacActions" id="block_expired">
256
                    <select name="BlockExpiredPatronOpacActions" id="block_expired">
257
                        [% IF not category or category.BlockExpiredPatronOpacActions == -1%]
257
                        [% IF not category or category.BlockExpiredPatronOpacActions == -1%]
258
                            <option value="-1" selected="selected"> Follow system preference BlockExpiredPatronOpacActions </option>
258
                            <option value="-1" selected="selected"> Follow system preference BlockExpiredPatronOpacActions </option>
(-)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 203-211 Link Here
203
                                    </li>
203
                                    </li>
204
                                    <li>
204
                                    <li>
205
                                        <input type="radio" name="number_type" id="barcode_enter" value="barcode" checked />
205
                                        <input type="radio" name="number_type" id="barcode_enter" value="barcode" checked />
206
                                        <label for="barcode_enter">Enter by barcode</label><br/>
206
                                        <label for="barcode_enter">Enter by barcode:</label><br/>
207
                                        <input type="radio" name="number_type" id="itemnum_enter" value="itemnumber" />
207
                                        <input type="radio" name="number_type" id="itemnum_enter" value="itemnumber" />
208
                                        <label for="itemnum_enter">Enter by itemnumber</label>
208
                                        <label for="itemnum_enter">Enter by itemnumber:</label>
209
                                    </li>
209
                                    </li>
210
                                    <li>
210
                                    <li>
211
                                        <label for="number_list">Add by barcode(s) or itemnumbers(s):
211
                                        <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 770-776 function select_user(borrowernumber, borrower) { Link Here
770
			[% ELSE %]
770
			[% ELSE %]
771
            <label for="to">
771
            <label for="to">
772
			[% END %]
772
			[% END %]
773
			Expiry date (leave blank for auto calc) </label>
773
			Expiry date (leave blank for auto calc): </label>
774
            [% IF ( dateformat == "metric" ) %]
774
            [% IF ( dateformat == "metric" ) %]
775
				[% UNLESS ( opadd ) %]
775
				[% UNLESS ( opadd ) %]
776
                    <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" />
776
                    <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 97-103 $(document).ready(function(){ Link Here
97
        <li>
97
        <li>
98
            <label for="outputfile">To a file:</label> <input type="radio" name="output" value="file" id="outputfile" />
98
            <label for="outputfile">To a file:</label> <input type="radio" name="output" value="file" id="outputfile" />
99
            <label class="inline" for="basename">Named: </label><input type="text" name="basename" id="basename" value="Export" />
99
            <label class="inline" for="basename">Named: </label><input type="text" name="basename" id="basename" value="Export" />
100
            <label class="inline" for="MIME">Into an application </label>
100
            <label class="inline" for="MIME">Into an application:</label>
101
            <select name="MIME" id="MIME" size="1">
101
            <select name="MIME" id="MIME" size="1">
102
            [% FOREACH value IN CGIextChoice %]
102
            [% FOREACH value IN CGIextChoice %]
103
                <option value="[% value %]">[% value %]</option>
103
                <option value="[% value %]">[% value %]</option>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/borrowers_stats.tt (-1 / +1 lines)
Lines 258-264 Link Here
258
        <li>
258
        <li>
259
            <label for="outputfile">To a file:</label> <input type="radio" name="output" value="file" id="outputfile" />
259
            <label for="outputfile">To a file:</label> <input type="radio" name="output" value="file" id="outputfile" />
260
            <label class="inline" for="basename">Named: </label><input type="text" name="basename" id="basename" value="Export" />
260
            <label class="inline" for="basename">Named: </label><input type="text" name="basename" id="basename" value="Export" />
261
            <label class="inline" for="MIME">Into an application</label>
261
            <label class="inline" for="MIME">Into an application:</label>
262
            <select name="MIME" id="MIME" size="1">
262
            <select name="MIME" id="MIME" size="1">
263
            [% FOREACH value IN CGIextChoice %]
263
            [% FOREACH value IN CGIextChoice %]
264
                <option value="[% value %]">[% value %]</option>
264
                <option value="[% value %]">[% value %]</option>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/cat_issues_top.tt (-1 / +1 lines)
Lines 188-194 Link Here
188
        <li>
188
        <li>
189
            <label for="outputfile">To a file:</label> <input type="radio" name="output" value="file" id="outputfile" />
189
            <label for="outputfile">To a file:</label> <input type="radio" name="output" value="file" id="outputfile" />
190
            <label class="inline" for="basename">Named: </label><input type="text" name="basename" id="basename" value="Export" />
190
            <label class="inline" for="basename">Named: </label><input type="text" name="basename" id="basename" value="Export" />
191
            <label class="inline" for="MIME">Into an application </label>
191
            <label class="inline" for="MIME">Into an application:</label>
192
            <select name="MIME" id="MIME" size="1">
192
            <select name="MIME" id="MIME" size="1">
193
            [% FOREACH value IN CGIextChoice %]
193
            [% FOREACH value IN CGIextChoice %]
194
                <option value="[% value %]">[% value %]</option>
194
                <option value="[% value %]">[% value %]</option>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/dictionary.tt (-1 / +1 lines)
Lines 116-122 Link Here
116
        <input type="hidden" name="phase" value="New Term step 3" />
116
        <input type="hidden" name="phase" value="New Term step 3" />
117
        <input type="hidden" name="definition_name" value="[% definition_name %]" />
117
        <input type="hidden" name="definition_name" value="[% definition_name %]" />
118
        <input type="hidden" name="definition_description" value="[% definition_description %]" />
118
        <input type="hidden" name="definition_description" value="[% definition_description %]" />
119
        <label for="area">Select table </label><select name="area" id="area">
119
        <label for="area">Select table:</label><select name="area" id="area">
120
      [%- FOREACH area IN areas -%]
120
      [%- FOREACH area IN areas -%]
121
        <option value="[%- area.id -%]">[%- PROCESS area_name area=area.id -%]</option>
121
        <option value="[%- area.id -%]">[%- PROCESS area_name area=area.id -%]</option>
122
      [%- END -%]
122
      [%- END -%]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt (-2 / +2 lines)
Lines 414-420 canned reports and writing custom SQL reports.</p> Link Here
414
<h1>Build a report</h1>
414
<h1>Build a report</h1>
415
<form action="/cgi-bin/koha/reports/guided_reports.pl">
415
<form action="/cgi-bin/koha/reports/guided_reports.pl">
416
<fieldset class="rows">
416
<fieldset class="rows">
417
<legend>Step 1 of 6: Choose a module to report on,[% IF (usecache) %] Set cache expiry, [% END %] and Choose report visibility </legend>
417
<legend>Step 1 of 6: Choose a module to report on,[% IF (usecache) %] Set cache expiry, [% END %] and choose report visibility </legend>
418
<ol>
418
<ol>
419
  <li>
419
  <li>
420
    <label for="area">Choose: </label>
420
    <label for="area">Choose: </label>
Lines 1086-1092 $("#column_submit").submit(function() { Link Here
1086
            [% END %]
1086
            [% END %]
1087
        </select>
1087
        </select>
1088
        <input type="radio" name="select_or_create_group" id="create_group" />
1088
        <input type="radio" name="select_or_create_group" id="create_group" />
1089
        <label for="create_group" style="float:none">or create</label>
1089
        <label for="create_group" style="float:none">or create:</label>
1090
        <input type="text" name="group" id="group_input" title="Group code" placeholder="Code" />
1090
        <input type="text" name="group" id="group_input" title="Group code" placeholder="Code" />
1091
        <input type="text" name="groupdesc" id="groupdesc_input" title="Group name" placeholder="Name" />
1091
        <input type="text" name="groupdesc" id="groupdesc_input" title="Group name" placeholder="Name" />
1092
    </li>
1092
    </li>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/issues_stats.tt (-3 / +3 lines)
Lines 245-252 Link Here
245
        </tbody>
245
        </tbody>
246
    </table><br /></fieldset>
246
    </table><br /></fieldset>
247
247
248
<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>
248
<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>
249
            <li><label for="cellvalue3">Count unique items</label> <input type="radio" name="Cellvalue" id="cellvalue3" value="3" /> </li></ol></fieldset>
249
            <li><label for="cellvalue3">Count unique items:</label> <input type="radio" name="Cellvalue" id="cellvalue3" value="3" /> </li></ol></fieldset>
250
			
250
			
251
	<fieldset class="rows">
251
	<fieldset class="rows">
252
	<legend>Output</legend>
252
	<legend>Output</legend>
Lines 257-263 Link Here
257
        <li>
257
        <li>
258
            <label for="outputfile">To a file:</label> <input type="radio" name="output" value="file" id="outputfile" />
258
            <label for="outputfile">To a file:</label> <input type="radio" name="output" value="file" id="outputfile" />
259
            <label class="inline" for="basename">Named: </label><input type="text" name="basename" id="basename" value="Export" />
259
            <label class="inline" for="basename">Named: </label><input type="text" name="basename" id="basename" value="Export" />
260
            <label class="inline" for="MIME">Into an application</label>
260
            <label class="inline" for="MIME">Into an application:</label>
261
            <select name="MIME" id="MIME" size="1">
261
            <select name="MIME" id="MIME" size="1">
262
            [% FOREACH value IN CGIextChoice %]
262
            [% FOREACH value IN CGIextChoice %]
263
                <option value="[% value %]">[% value %]</option>
263
                <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 323-330 Link Here
323
        </tbody>
323
        </tbody>
324
    </table><br /></fieldset>
324
    </table><br /></fieldset>
325
325
326
<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>
326
<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>
327
            <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>
327
            <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>
328
			
328
			
329
	<fieldset class="rows">
329
	<fieldset class="rows">
330
	<legend>Output</legend>
330
	<legend>Output</legend>
Lines 335-341 Link Here
335
        <li>
335
        <li>
336
            <label for="outputfile">To a file:</label> <input type="radio" name="output" value="file" id="outputfile" />
336
            <label for="outputfile">To a file:</label> <input type="radio" name="output" value="file" id="outputfile" />
337
            <label class="inline" for="basename">Named: </label><input type="text" name="basename" id="basename" value="Export" />
337
            <label class="inline" for="basename">Named: </label><input type="text" name="basename" id="basename" value="Export" />
338
            <label class="inline" for="MIME">Into an application</label>
338
            <label class="inline" for="MIME">Into an application:</label>
339
            <select name="MIME" id="MIME" size="1">
339
            <select name="MIME" id="MIME" size="1">
340
            [% FOREACH value IN CGIextChoice %]
340
            [% FOREACH value IN CGIextChoice %]
341
                <option value="[% value %]">[% value %]</option>
341
                <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 542-548 $(document).ready(function() { Link Here
542
                                  [% END %]
542
                                  [% END %]
543
                                </li>
543
                                </li>
544
                                <li>
544
                                <li>
545
                                    <label for="manualhistory">Manual history</label>
545
                                    <label for="manualhistory">Manual history:</label>
546
                                    [% IF (manualhistory) %]
546
                                    [% IF (manualhistory) %]
547
                                        <input type="checkbox" id="manualhistory" name="manualhist" checked="checked" />
547
                                        <input type="checkbox" id="manualhistory" name="manualhist" checked="checked" />
548
                                    [% ELSE %]
548
                                    [% ELSE %]
Lines 550-556 $(document).ready(function() { Link Here
550
                                    [% END %]
550
                                    [% END %]
551
                                </li>
551
                                </li>
552
                                <li>
552
                                <li>
553
                                    <label for="callnumber">Call number</label>
553
                                    <label for="callnumber">Call number:</label>
554
                                    <input type="text" name="callnumber" id="callnumber" value="[% callnumber %]" size="20" />
554
                                    <input type="text" name="callnumber" id="callnumber" value="[% callnumber %]" size="20" />
555
                                </li>
555
                                </li>
556
                                <li>
556
                                <li>
Lines 722-728 $(document).ready(function() { Link Here
722
                                        </select>
722
                                        </select>
723
                                    </li>
723
                                    </li>
724
                                    <li>
724
                                    <li>
725
                                        <label for="locale">Locale</label>
725
                                        <label for="locale">Locale:</label>
726
                                        <select id="locale" name="locale">
726
                                        <select id="locale" name="locale">
727
                                            <option value=""></option>
727
                                            <option value=""></option>
728
                                            [% FOREACH l IN locales %]
728
                                            [% FOREACH l IN locales %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tags/review.tt (-3 / +3 lines)
Lines 334-342 tr > td input,td input[type="submit"] { font-size: 85%; padding: 1px; } Link Here
334
<fieldset class="brief">
334
<fieldset class="brief">
335
  <h4>Filters</h4>
335
  <h4>Filters</h4>
336
	<ol>
336
	<ol>
337
	    <li><label for="tag">Term</label> <input type="text" name="tag" id="tag" value="[% filter_tag %]" />
337
	    <li><label for="tag">Term:</label> <input type="text" name="tag" id="tag" value="[% filter_tag %]" />
338
	    </li>
338
	    </li>
339
	    <li><label for="approved">Status</label> 
339
	    <li><label for="approved">Status:</label>
340
            <select name="approved" id="approved">
340
            <select name="approved" id="approved">
341
            [% IF ( filter_approved_all ) %]<option selected="selected" value="all">all</option>
341
            [% IF ( filter_approved_all ) %]<option selected="selected" value="all">all</option>
342
            [% ELSE %]<option value="all">all</option>[% END %]
342
            [% ELSE %]<option value="all">all</option>[% END %]
Lines 348-354 tr > td input,td input[type="submit"] { font-size: 85%; padding: 1px; } Link Here
348
            [% ELSE %]<option value="-1">rejected</option>[% END %]
348
            [% ELSE %]<option value="-1">rejected</option>[% END %]
349
			</select>
349
			</select>
350
	    </li>
350
	    </li>
351
	    <li><label for="approver">Reviewer</label> <input type="text" name="approver" id="approver" value="[% filter_approver %]" />
351
	    <li><label for="approver">Reviewer:</label> <input type="text" name="approver" id="approver" value="[% filter_approver %]" />
352
	    </li>
352
	    </li>
353
	    <li>
353
	    <li>
354
			<label for="from">Date: from </label>
354
			<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 185-198 $(document).ready(function() { Link Here
185
    </legend>
185
    </legend>
186
        <ol>
186
        <ol>
187
        <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>
187
        <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>
188
        <li><label for="id_list_file">File : </label> <input type="file" id="id_list_file" name="id_list_file" /></li>
188
        <li><label for="id_list_file">File:</label> <input type="file" id="id_list_file" name="id_list_file" /></li>
189
        </ol>
189
        </ol>
190
    </fieldset>
190
    </fieldset>
191
    <fieldset class="rows">
191
    <fieldset class="rows">
192
    <legend>Options</legend>
192
    <legend>Options</legend>
193
        <ol>
193
        <ol>
194
        <li>
194
        <li>
195
            <label for="export_remove_fields">Don't export fields</label>
195
            <label for="export_remove_fields">Don't export fields:</label>
196
            <input id="export_remove_fields" type="text" name="export_remove_fields" />
196
            <input id="export_remove_fields" type="text" name="export_remove_fields" />
197
            separate by a blank. (e.g., 100a 200 606)
197
            separate by a blank. (e.g., 100a 200 606)
198
        </li></ol>
198
        </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