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>
This commit is contained in:
parent
7439579b8b
commit
cdf324f135
1 changed files with 9 additions and 9 deletions
|
@ -300,6 +300,15 @@ Item types › Administration › 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 › Administration › 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…
Reference in a new issue