@@ -, +, @@ --- .../prog/en/modules/members/housebound.tt | 105 +++++++++--------- 1 file changed, 55 insertions(+), 50 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/housebound.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/members/housebound.tt @@ -14,6 +14,58 @@ [% INCLUDE 'header.inc' %] [% INCLUDE 'patron-search.inc' %] +[% BLOCK 'homebound-details' %] +
+
    +
  1. + Delivery day: + [% hpd = housebound_profile.day %] + [% IF hpd == 'any' %] + Any + [% ELSIF hpd == 'monday' %] + Monday + [% ELSIF hpd == 'tuesday' %] + Tuesday + [% ELSIF hpd == 'wednesday' %] + Wednesday + [% ELSIF hpd == 'thursday' %] + Thursday + [% ELSIF hpd == 'friday' %] + Friday + [% ELSIF hpd == 'saturday' %] + Saturday + [% ELSIF hpd == 'sunday' %] + Sunday + [% END %] +
  2. +
  3. + Frequency: + [% AuthorisedValues.GetByCode( 'HSBND_FREQ', housebound_profile.frequency, 0 ) || housebound_profile.frequency | html %] +
  4. +
  5. + Material: + [% housebound_profile.fav_itemtypes | html %] +
  6. +
  7. + Subjects: + [% housebound_profile.fav_subjects | html %] +
  8. +
  9. + Authors: + [% housebound_profile.fav_authors | html %] +
  10. +
  11. + Referral: + [% housebound_profile.referral | html %] +
  12. +
  13. + Notes: + [% housebound_profile.notes | html %] +
  14. +
+
+[% END %] +