Browse Source

Bug 23207: (QA follow-up) Move option

This patch impliment the changes as suggested by Andrew on the bug
report. I agree that the suggested location fits better in the page and
the updated description is clearer.

Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
21.05.x
Martin Renvoize 3 years ago
committed by Jonathan Druart
parent
commit
cdf324f135
  1. 18
      koha-tmpl/intranet-tmpl/prog/en/modules/admin/itemtypes.tt

18
koha-tmpl/intranet-tmpl/prog/en/modules/admin/itemtypes.tt

@ -300,6 +300,15 @@ Item types &rsaquo; Administration &rsaquo; Koha
[% END %]
<span class="hint">If checked, no item of this type can be issued. If not checked, every item of this type can be issued unless notforloan is set for a specific item.</span>
</li>
<li>
<label for="automatic_checkin">Automatic checkin: </label>
[% IF itemtype.automatic_checkin %]
<input type="checkbox" id="automatic_checkin" name="automatic_checkin" checked="checked" value="1" />
[% ELSE %]
<input type="checkbox" id="automatic_checkin" name="automatic_checkin" value="1" />
[% END %]
<span class="hint">If checked, items will be automatically checked in once they've reached their due date.</span>
</li>
<li>
<label for="rentalcharge">Rental charge: </label>
<input type="text" id="rentalcharge" name="rentalcharge" size="10" value="[% itemtype.rentalcharge | $Price on_editing => 1 %]" />
@ -380,15 +389,6 @@ Item types &rsaquo; Administration &rsaquo; Koha
</select>
<span class="hint">Select 'All libraries' if all libraries use this item type. Otherwise, select the specific libraries that use this item type.</span>
</li>
<li>
<label for="automatic_checkin">Automatic checkin: </label>
[% IF itemtype.automatic_checkin %]
<input type="checkbox" id="automatic_checkin" name="automatic_checkin" checked="checked" value="1" />
[% ELSE %]
<input type="checkbox" id="automatic_checkin" name="automatic_checkin" value="1" />
[% END %]
<span class="hint">If checked, items will be checked in automatically after a period of time. Useful for materials where you really don't care for fisical return, like museum passes, etc.</span>
</li>
<li>
<label for="summary">Summary: </label>
<textarea id="summary" name="summary" cols="55" rows="5">[% itemtype.summary | html %]</textarea>

Loading…
Cancel
Save