Browse Source

Bug 27407: Update reserve/request.tt for ACC2

Test Plan:
1. Open intranet-tmpl/prog/en/modules/reserve/request.tt for ACC2
2. Check for instances of 'input type="number"'
3. If none are found then patch was successful

Signed-off-by: Owen Leonard <oleonard@myacpl.org>

Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
21.05.x
Mazen Khallaf 3 years ago
committed by Jonathan Druart
parent
commit
6e8f526cce
  1. 2
      koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt

2
koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt

@ -474,7 +474,7 @@
[% IF remaining_holds_for_record > 1 %]
<li>
<label for="holds_to_place_count">Holds to place (count)</label>
<input id="holds_to_place_count" type="number" name="holds_to_place_count" min="1" max="[% remaining_holds_for_record | html %]" step="1" value="1" />
<input type="text" inputmode="numeric" pattern="[0-9]*" id="holds_to_place_count" name="holds_to_place_count" maxlength="[% remaining_holds_for_record | html %]" value="1" />
</li>
[% ELSE %]
<input type="hidden" name="holds_to_place_count" value="1" />

Loading…
Cancel
Save