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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/adv-search.inc (-2 / +2 lines)
Lines 8-21 Link Here
8
            <div id="checkin_search" class="residentsearch">
8
            <div id="checkin_search" class="residentsearch">
9
                <p class="tip">Scan a barcode to check in:</p>
9
                <p class="tip">Scan a barcode to check in:</p>
10
                <form method="post" action="/cgi-bin/koha/circ/returns.pl" autocomplete="off">
10
                <form method="post" action="/cgi-bin/koha/circ/returns.pl" autocomplete="off">
11
                    <input name="barcode" class="head-searchbox" id="ret_barcode" size="40" accesskey="r" />
11
                    <input type="text" name="barcode" class="head-searchbox" id="ret_barcode" size="40" accesskey="r" />
12
                    <input value="Submit" class="submit" type="submit" />
12
                    <input value="Submit" class="submit" type="submit" />
13
                </form>
13
                </form>
14
            </div>
14
            </div>
15
            <div id="renew_search" class="residentsearch">
15
            <div id="renew_search" class="residentsearch">
16
                <p class="tip">Scan a barcode to renew:</p>
16
                <p class="tip">Scan a barcode to renew:</p>
17
                <form method="post" action="/cgi-bin/koha/circ/renew.pl" autocomplete="off">
17
                <form method="post" action="/cgi-bin/koha/circ/renew.pl" autocomplete="off">
18
                    <input class="head-searchbox" name="barcode" id="ren_barcode" size="40" />
18
                    <input type="text" class="head-searchbox" name="barcode" id="ren_barcode" size="40" />
19
                    <input value="Submit" class="submit" type="submit" />
19
                    <input value="Submit" class="submit" type="submit" />
20
                </form>
20
                </form>
21
            </div>
21
            </div>
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/cataloging-search.inc (-2 / +2 lines)
Lines 16-29 Link Here
16
        <div id="checkin_search" class="residentsearch">
16
        <div id="checkin_search" class="residentsearch">
17
            <p class="tip">Scan a barcode to check in:</p>
17
            <p class="tip">Scan a barcode to check in:</p>
18
            <form method="post" action="/cgi-bin/koha/circ/returns.pl" autocomplete="off">
18
            <form method="post" action="/cgi-bin/koha/circ/returns.pl" autocomplete="off">
19
                <input class="head-searchbox" name="barcode" id="ret_barcode" size="40" />
19
                <input class="head-searchbox" type="text" name="barcode" id="ret_barcode" size="40" />
20
                <input value="Submit" class="submit" type="submit" />
20
                <input value="Submit" class="submit" type="submit" />
21
            </form>
21
            </form>
22
        </div>
22
        </div>
23
        <div id="renew_search" class="residentsearch">
23
        <div id="renew_search" class="residentsearch">
24
        <p class="tip">Scan a barcode to renew:</p>
24
        <p class="tip">Scan a barcode to renew:</p>
25
            <form method="post" action="/cgi-bin/koha/circ/renew.pl" autocomplete="off">
25
            <form method="post" action="/cgi-bin/koha/circ/renew.pl" autocomplete="off">
26
                <input class="head-searchbox" name="barcode" id="ren_barcode" size="40" />
26
                <input class="head-searchbox" type="text" name="barcode" id="ren_barcode" size="40" />
27
                <input value="Submit" class="submit" type="submit" />
27
                <input value="Submit" class="submit" type="submit" />
28
            </form>
28
            </form>
29
        </div>
29
        </div>
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/checkin-search.inc (-1 / +1 lines)
Lines 8-14 Link Here
8
<div id="renew_search" class="residentsearch">
8
<div id="renew_search" class="residentsearch">
9
    <p class="tip">Scan a barcode to renew:</p>
9
    <p class="tip">Scan a barcode to renew:</p>
10
    <form method="post" action="/cgi-bin/koha/circ/renew.pl" autocomplete="off">
10
    <form method="post" action="/cgi-bin/koha/circ/renew.pl" autocomplete="off">
11
        <input class="head-searchbox" name="barcode" id="ren_barcode" size="40" />
11
        <input class="head-searchbox" type="text" name="barcode" id="ren_barcode" size="40" />
12
        <input value="Submit" class="submit" type="submit" />
12
        <input value="Submit" class="submit" type="submit" />
13
    </form>
13
    </form>
14
</div>
14
</div>
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/holds_table.inc (-1 / +1 lines)
Lines 181-187 Link Here
181
181
182
                        [% IF AutoResumeSuspendedHolds %]
182
                        [% IF AutoResumeSuspendedHolds %]
183
                            <label for="suspend_until_[% hold.reserve_id | html %]">[% IF ( hold.suspend ) %] on [% ELSE %] until [% END %]</label>
183
                            <label for="suspend_until_[% hold.reserve_id | html %]">[% IF ( hold.suspend ) %] on [% ELSE %] until [% END %]</label>
184
                            <input name="suspend_until" id="suspend_until_[% hold.reserve_id | html %]" size="10" value="[% hold.suspend_until | $KohaDates %]" class="datepicker suspend_until_datepicker" />
184
                            <input type="text" name="suspend_until" id="suspend_until_[% hold.reserve_id | html %]" size="10" value="[% hold.suspend_until | $KohaDates %]" class="datepicker suspend_until_datepicker" />
185
                            <a href='#' onclick="document.getElementById('suspend_until_[% hold.reserve_id | html %]').value='';">Clear date</a>
185
                            <a href='#' onclick="document.getElementById('suspend_until_[% hold.reserve_id | html %]').value='';">Clear date</a>
186
                        [% ELSE %]
186
                        [% ELSE %]
187
                            <input type="hidden" name="suspend_until" id="suspend_until_[% hold.reserve_id | html %]" value=""/>
187
                            <input type="hidden" name="suspend_until" id="suspend_until_[% hold.reserve_id | html %]" value=""/>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/clubs/templates-add-modify.tt (-8 / +8 lines)
Lines 99-110 Link Here
99
                                    <input type="hidden" name="club_template_field_id" value="[% f.id | html %]" />
99
                                    <input type="hidden" name="club_template_field_id" value="[% f.id | html %]" />
100
                                    <li>
100
                                    <li>
101
                                        <label for="field-name-[% f.id | html %]">Name:</label>
101
                                        <label for="field-name-[% f.id | html %]">Name:</label>
102
                                        <input name="club_template_field_name" id="field-name-[% f.id | html %]" value="[% f.name | html %]" />
102
                                        <input type="text" name="club_template_field_name" id="field-name-[% f.id | html %]" value="[% f.name | html %]" />
103
                                    </li>
103
                                    </li>
104
104
105
                                    <li>
105
                                    <li>
106
                                        <label for="field-description-[% f.id | html %]">Description:</label>
106
                                        <label for="field-description-[% f.id | html %]">Description:</label>
107
                                        <input name="club_template_field_description" id="field-description-[% f.id | html %]" value="[% f.description | html %]" />
107
                                        <input type="text" name="club_template_field_description" id="field-description-[% f.id | html %]" value="[% f.description | html %]" />
108
                                    </li>
108
                                    </li>
109
109
110
                                    <li>
110
                                    <li>
Lines 144-155 Link Here
144
                                    <li>
144
                                    <li>
145
                                        <input type="hidden" name="club_template_enrollment_field_id" value="[% f.id | html %]" />
145
                                        <input type="hidden" name="club_template_enrollment_field_id" value="[% f.id | html %]" />
146
                                        <label for="enrollment-field-name-[% f.id | html %]">Name:</label>
146
                                        <label for="enrollment-field-name-[% f.id | html %]">Name:</label>
147
                                        <input name="club_template_enrollment_field_name" id="enrollment-field-name-[% f.id | html %]" value="[% f.name | html %]" size="40" />
147
                                        <input type="text" name="club_template_enrollment_field_name" id="enrollment-field-name-[% f.id | html %]" value="[% f.name | html %]" size="40" />
148
                                    </li>
148
                                    </li>
149
149
150
                                    <li>
150
                                    <li>
151
                                        <label for="enrollment-field-description-[% f.id | html %]">Description:</label>
151
                                        <label for="enrollment-field-description-[% f.id | html %]">Description:</label>
152
                                        <input name="club_template_enrollment_field_description" id="enrollment-field-description-[% f.id | html %]" value="[% f.description | html %]" size="40" />
152
                                        <input type="text" name="club_template_enrollment_field_description" id="enrollment-field-description-[% f.id | html %]" value="[% f.description | html %]" size="40" />
153
                                    </li>
153
                                    </li>
154
154
155
                                    <li>
155
                                    <li>
Lines 193-204 Link Here
193
193
194
        <li>
194
        <li>
195
            <label for="club_template_field_name">Name:</label>
195
            <label for="club_template_field_name">Name:</label>
196
            <input name="club_template_field_name" />
196
            <input type="text" name="club_template_field_name" />
197
        </li>
197
        </li>
198
198
199
        <li>
199
        <li>
200
            <label for="club_template_field_description">Description:</label>
200
            <label for="club_template_field_description">Description:</label>
201
            <input name="club_template_field_description" />
201
            <input type="text" name="club_template_field_description" />
202
        </li>
202
        </li>
203
203
204
        <li>
204
        <li>
Lines 220-231 Link Here
220
220
221
        <li>
221
        <li>
222
            <label for="club_template_enrollment_field_name">Name:</label>
222
            <label for="club_template_enrollment_field_name">Name:</label>
223
            <input name="club_template_enrollment_field_name" />
223
            <input type="text" name="club_template_enrollment_field_name" />
224
        </li>
224
        </li>
225
225
226
        <li>
226
        <li>
227
            <label for="club_template_enrollment_field_description">Description:</label>
227
            <label for="club_template_enrollment_field_description">Description:</label>
228
            <input name="club_template_enrollment_field_description" />
228
            <input type="text" name="club_template_enrollment_field_description" />
229
        </li>
229
        </li>
230
230
231
        <li>
231
        <li>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/subscription-batchedit.tt (-1 / +1 lines)
Lines 146-152 Link Here
146
                                                [% END %]
146
                                                [% END %]
147
                                            </select>
147
                                            </select>
148
                                        [% ELSE %]
148
                                        [% ELSE %]
149
                                            <input id="field_[% field.id | html %]" name="field_[% field.id | html %]" placeholder="No change"/>
149
                                            <input type="text" id="field_[% field.id | html %]" name="field_[% field.id | html %]" placeholder="No change"/>
150
                                        [% END %]
150
                                        [% END %]
151
                                    </li>
151
                                    </li>
152
                                [% END %]
152
                                [% END %]
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-basket.tt (-1 / +1 lines)
Lines 55-61 Link Here
55
                                [% IF ( TagsInputEnabled && loggedinusername ) %]
55
                                [% IF ( TagsInputEnabled && loggedinusername ) %]
56
                                <span id="tagsel_form" style="display:none">
56
                                <span id="tagsel_form" style="display:none">
57
                                    <label for="tagsel_new">New tag:</label>
57
                                    <label for="tagsel_new">New tag:</label>
58
                                    <input name="tagsel_new" id="tagsel_new" maxlength="100" />
58
                                    <input type="text" name="tagsel_new" id="tagsel_new" maxlength="100" />
59
                                    <input id="tagsel_button" name="tagsel_button" class="input tagsel_button" title="Add" type="submit" value="Add">
59
                                    <input id="tagsel_button" name="tagsel_button" class="input tagsel_button" title="Add" type="submit" value="Add">
60
                                    <a href="#" id="tagsel_cancel">Cancel</a>
60
                                    <a href="#" id="tagsel_cancel">Cancel</a>
61
                                </span>
61
                                </span>
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-reserve.tt (-2 / +2 lines)
Lines 260-273 Link Here
260
                                                        [% IF ( reserve_in_future ) %]
260
                                                        [% IF ( reserve_in_future ) %]
261
                                                            <li>
261
                                                            <li>
262
                                                                <label for="from[% bibitemloo.biblionumber | html %]">Hold starts on date:</label>
262
                                                                <label for="from[% bibitemloo.biblionumber | html %]">Hold starts on date:</label>
263
                                                                <input name="reserve_date_[% bibitemloo.biblionumber | html %]" id="from[% bibitemloo.biblionumber | html %]" size="10" class="holddatefrom"/>
263
                                                                <input type="text" name="reserve_date_[% bibitemloo.biblionumber | html %]" id="from[% bibitemloo.biblionumber | html %]" size="10" class="holddatefrom"/>
264
                                                                <span class="date-format from" data-biblionumber="[% bibitemloo.biblionumber | html %]">[% INCLUDE 'date-format.inc' %]</span>
264
                                                                <span class="date-format from" data-biblionumber="[% bibitemloo.biblionumber | html %]">[% INCLUDE 'date-format.inc' %]</span>
265
                                                            </li>
265
                                                            </li>
266
                                                        [% END %]
266
                                                        [% END %]
267
267
268
                                                        <li>
268
                                                        <li>
269
                                                            <label for="to[% bibitemloo.biblionumber | html %]">Hold not needed after:</label>
269
                                                            <label for="to[% bibitemloo.biblionumber | html %]">Hold not needed after:</label>
270
                                                            <input name="expiration_date_[% bibitemloo.biblionumber | html %]" id="to[% bibitemloo.biblionumber | html %]" size="10" class="holddateto" />
270
                                                            <input type="text" name="expiration_date_[% bibitemloo.biblionumber | html %]" id="to[% bibitemloo.biblionumber | html %]" size="10" class="holddateto" />
271
                                                            <span class="date-format to" data-biblionumber="[% bibitemloo.biblionumber | html %]">[% INCLUDE 'date-format.inc' %]</span>
271
                                                            <span class="date-format to" data-biblionumber="[% bibitemloo.biblionumber | html %]">[% INCLUDE 'date-format.inc' %]</span>
272
                                                        </li>
272
                                                        </li>
273
273
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-results.tt (-1 / +1 lines)
Lines 169-175 Link Here
169
                                                </span>
169
                                                </span>
170
                                                <div id="tagsel_form" style="display:none">
170
                                                <div id="tagsel_form" style="display:none">
171
                                                    <label for="tagsel_new">New tag:</label>
171
                                                    <label for="tagsel_new">New tag:</label>
172
                                                    <input name="tagsel_new" id="tagsel_new" maxlength="100" />
172
                                                    <input type="text" name="tagsel_new" id="tagsel_new" maxlength="100" />
173
                                                    <input id="tagsel_button" name="tagsel_button" class="tagsel_button btn btn-small" title="Add" type="submit" value="Add" />
173
                                                    <input id="tagsel_button" name="tagsel_button" class="tagsel_button btn btn-small" title="Add" type="submit" value="Add" />
174
                                                    <a href="#" id="tagsel_cancel">(done)</a>
174
                                                    <a href="#" id="tagsel_cancel">(done)</a>
175
                                                </div>
175
                                                </div>
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-shareshelf.tt (-1 / +1 lines)
Lines 55-61 Link Here
55
            <li><label for="name">List name:</label> [% shelfname | html %]</li>
55
            <li><label for="name">List name:</label> [% shelfname | html %]</li>
56
            <li>
56
            <li>
57
                <label for="invite_address">Email address:</label>
57
                <label for="invite_address">Email address:</label>
58
                <input id="invite_address" name="invite_address" size="40" />
58
                <input type="text" id="invite_address" name="invite_address" size="40" />
59
            </li>
59
            </li>
60
            </ol>
60
            </ol>
61
        </fieldset>
61
        </fieldset>
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-shelves.tt (-2 / +2 lines)
Lines 270-276 Link Here
270
                                        </span>
270
                                        </span>
271
                                        <span id="tagsel_form" style="display:none">
271
                                        <span id="tagsel_form" style="display:none">
272
                                          <label for="tagsel_new">New tag(s), separated by a comma:</label>
272
                                          <label for="tagsel_new">New tag(s), separated by a comma:</label>
273
                                          <input name="tagsel_new" id="tagsel_new" maxlength="100" />
273
                                          <input type="text" name="tagsel_new" id="tagsel_new" maxlength="100" />
274
                                          <input id="tagsel_button" name="tagsel_button" class="tagsel_button btn btn-small" title="tagsel_button" type="submit" value="Add" />
274
                                          <input id="tagsel_button" name="tagsel_button" class="tagsel_button btn btn-small" title="tagsel_button" type="submit" value="Add" />
275
                                          <a href="#" id="tagsel_cancel">Cancel</a>
275
                                          <a href="#" id="tagsel_cancel">Cancel</a>
276
                                        </span>
276
                                        </span>
Lines 456-462 Link Here
456
                                                                <span class="actions"><a class="tag_add hidden" id="tag_add[% itemsloo.biblionumber | html %]" href="#">Add tag</a></span>
456
                                                                <span class="actions"><a class="tag_add hidden" id="tag_add[% itemsloo.biblionumber | html %]" href="#">Add tag</a></span>
457
                                                                <div id="tagform[% itemsloo.biblionumber | html %]" class="tag_results_input" style="display:none;">
457
                                                                <div id="tagform[% itemsloo.biblionumber | html %]" class="tag_results_input" style="display:none;">
458
                                                                    <label for="newtag[% itemsloo.biblionumber | html %]">New tag(s), separated by a comma:</label>
458
                                                                    <label for="newtag[% itemsloo.biblionumber | html %]">New tag(s), separated by a comma:</label>
459
                                                                    <input name="newtag[% itemsloo.biblionumber | html %]" id="newtag[% itemsloo.biblionumber | html %]" maxlength="100" />
459
                                                                    <input type="text" name="newtag[% itemsloo.biblionumber | html %]" id="newtag[% itemsloo.biblionumber | html %]" maxlength="100" />
460
                                                                    <input name="tagbutton" class="tagbutton btn btn-small" title="[% itemsloo.biblionumber | html %]" type="submit" value="Add" />
460
                                                                    <input name="tagbutton" class="tagbutton btn btn-small" title="[% itemsloo.biblionumber | html %]" type="submit" value="Add" />
461
                                                                    <a class="cancel_tag_add" id="cancel[% itemsloo.biblionumber | html %]" href="#">(done)</a>
461
                                                                    <a class="cancel_tag_add" id="cancel[% itemsloo.biblionumber | html %]" href="#">(done)</a>
462
                                                                </div>
462
                                                                </div>
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-user.tt (-3 / +2 lines)
Lines 723-729 Link Here
723
                                                                        <div class="modal-body">
723
                                                                        <div class="modal-body">
724
                                                                            <input type="hidden" name="reserve_id" value="[% RESERVE.reserve_id | html %]" />
724
                                                                            <input type="hidden" name="reserve_id" value="[% RESERVE.reserve_id | html %]" />
725
                                                                            <label for="suspend_until_[% RESERVE.reserve_id | html %]">Suspend until:</label>
725
                                                                            <label for="suspend_until_[% RESERVE.reserve_id | html %]">Suspend until:</label>
726
                                                                            <input name="suspend_until" id="suspend_until_[% RESERVE.reserve_id | html %]" class="suspend-until" size="10" />
726
                                                                            <input type="text" name="suspend_until" id="suspend_until_[% RESERVE.reserve_id | html %]" class="suspend-until" size="10" />
727
                                                                            [% INCLUDE 'date-format.inc' %]
727
                                                                            [% INCLUDE 'date-format.inc' %]
728
                                                                            <p class="js-show"><a href="#" onclick="document.getElementById('suspend_until_[% RESERVE.reserve_id | html %]').value='';return false;">Clear date to suspend indefinitely</a></p>
728
                                                                            <p class="js-show"><a href="#" onclick="document.getElementById('suspend_until_[% RESERVE.reserve_id | html %]').value='';return false;">Clear date to suspend indefinitely</a></p>
729
                                                                            <button class="btn btn-mini js-hide" type="submit" name="submit">Suspend</button>
729
                                                                            <button class="btn btn-mini js-hide" type="submit" name="submit">Suspend</button>
Lines 765-771 Link Here
765
765
766
                                        [% IF AutoResumeSuspendedHolds %]
766
                                        [% IF AutoResumeSuspendedHolds %]
767
                                            <label for="suspend_until"> until </label>
767
                                            <label for="suspend_until"> until </label>
768
                                            <input name="suspend_until" id="suspend_until" class="suspend-until" readonly="readonly" size="10" />
768
                                            <input type="text" name="suspend_until" id="suspend_until" class="suspend-until" readonly="readonly" size="10" />
769
                                            <a href="#" style="font-size:85%;text-decoration:none;" onclick="document.getElementById('suspend_until').value='';return false;">Clear date to suspend indefinitely</a>
769
                                            <a href="#" style="font-size:85%;text-decoration:none;" onclick="document.getElementById('suspend_until').value='';return false;">Clear date to suspend indefinitely</a>
770
                                        [% END %]
770
                                        [% END %]
771
                                    </form>
771
                                    </form>
772
- 

Return to bug 13272