From: Owen Leonard Date: Tue, 29 Jul 2014 19:08:33 +0000 (-0400) Subject: Bug 12635 - Course reserves item list should use "Checked out" instead of "On Loan" X-Git-Tag: v3.18.00-beta~724 X-Git-Url: http://koha-dev.rot13.org:8081/gitweb/?a=commitdiff_plain;h=a72b3371b8bda4d682dc68ce503e83a56d27ff1a;p=koha-ffzg.git Bug 12635 - Course reserves item list should use "Checked out" instead of "On Loan" When viewing the list of items on a course reserve list, if the item is checked out it is indicated by the phrase "On Loan." The default templates should always use "checked out" instead of "on loan." Also corrected: the capitalization of "Item Lost." To test, Course Reserves must be enabled and you must have an existing course reserves with items on it, one of which should be checked out. View the list of items on that Course Reserve and confirm that the table says "Checked out." Table in staff client displays "Checked out" / "Item lost" Signed-off-by: Marc VĂ©ron Signed-off-by: Katrin Fischer String change, no problems found. Signed-off-by: Tomas Cohen Arazi --- diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/course_reserves/course-details.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/course_reserves/course-details.tt index cb9f06f1cc..2a8dfba40c 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/course_reserves/course-details.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/course_reserves/course-details.tt @@ -161,9 +161,9 @@ [% IF CAN_user_coursereserves_delete_reserves %] [% IF cr.item.onloan %] - On Loan + Checked out [% ELSIF cr.item.itemlost %] - Item Lost + Item lost [% ELSE %] Remove [% END %]