Bug 23955: Replace famfamfam icon in OPAC holds template

This patch modifies the OPAC holds template so that when an item isn't
available for an item-level hold a Font Awesome icon is displayed
instead of a famfamfam image.

To test, apply the patch and regenerate the OPAC CSS
(https://wiki.koha-community.org/wiki/Working_with_SCSS_in_the_OPAC_and_staff_client).

 - Make sure you have items which can be placed on hold at the item
   level.
 - Locate a title with more than one item, at least one of which isn't
   available to be placed on hold (item is marked withdrawn, for
   instance).
 - Start the process of placing a hold on the item.
 - On the "Confirm holds" scren, click "Show more options" and select "A
   specific item."
 - In the table of items, any item which isn't available to be put on
   hold should be inidicated with a red X. The title attribute of the
   icon should show "Cannot be put on hold."

Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de>
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
This commit is contained in:
Owen Leonard 2019-11-03 22:03:46 +00:00 committed by Martin Renvoize
parent 5b694fea9a
commit 528b1e2905
Signed by: martin.renvoize
GPG key ID: 422B469130441A0F
2 changed files with 5 additions and 1 deletions

View file

@ -38,6 +38,10 @@ $footer-height: 45px;
&.fa-icon-white { &.fa-icon-white {
color: #000; color: #000;
} }
&.danger {
color: #C00;
}
} }
.popup { .popup {

View file

@ -354,7 +354,7 @@
[% ELSE %] [% ELSE %]
<input disabled="disabled" type="radio" class="checkitem" name="checkitem" value="[% itemLoo.itemnumber | html %]" <input disabled="disabled" type="radio" class="checkitem" name="checkitem" value="[% itemLoo.itemnumber | html %]"
style="display:none;" /> style="display:none;" />
<img src="[% interface | html %]/lib/famfamfam/cross.png" alt="Cannot be put on hold" title="Cannot be put on hold" /> <i class="fa fa-remove danger" title="Cannot be put on hold"></i>
[% END %] [% END %]
[% IF ( itemLoo.copynumber ) %] [% IF ( itemLoo.copynumber ) %]