From 412955f2fbd3ca94ef1b6cf8b1091adea20a96b3 Mon Sep 17 00:00:00 2001 From: helene hickey Date: Thu, 17 Jan 2019 01:09:04 +0000 Subject: [PATCH] Bug 19818: Add id into tag html from moremember.tt 1) Go to the patron details for a patron 2) On the right of the screen, right click one of the labels below 'Library use' etc, and Inspect Element 3) View
  • tags which should now each have a unique tag for each Signed-off-by: Owen Leonard --- .../prog/en/modules/members/moremember.tt | 58 +++++++++++----------- 1 file changed, 29 insertions(+), 29 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt index 6e15e3c..a98cbcd 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt @@ -400,31 +400,31 @@
      -
    1. +
    2. Card number: [% patron.cardnumber | html %]
    3. -
    4. +
    5. Borrowernumber: [% patron.borrowernumber | html %]
    6. -
    7. +
    8. Category: [% patron.category.description | html %] ([% patron.categorycode | html %])
    9. -
    10. +
    11. Registration date: [% patron.dateenrolled | $KohaDates %]
    12. [% IF ( patron.date_renewed ) %] -
    13. +
    14. Renewal date: [% patron.date_renewed | $KohaDates %]
    15. [% END %] -
    16. +
    17. Expiration date: [% IF ( was_renewed ) %] [% patron.dateexpiry | $KohaDates %] @@ -432,13 +432,13 @@ [% patron.dateexpiry | $KohaDates %] [% END %]
    18. -
    19. +
    20. Library: [% branchname | html %]
    21. [% IF ( OPACPrivacy ) %] -
    22. +
    23. Privacy Pref: [% IF ( privacy0 ) %]Forever[% END %] [% IF ( privacy1 ) %]Default[% END %] @@ -446,7 +446,7 @@
    24. [% END %] -
    25. +
    26. Show checkouts to guarantor [% IF privacy_guarantor_checkouts %] Yes @@ -456,22 +456,22 @@
    27. [% IF ( patron.sort1 ) %] -
    28. +
    29. Sort field 1: [% AuthorisedValues.GetByCode('Bsort1', patron.sort1) | html %]
    30. [% END %] [% IF ( patron.sort2 ) %] -
    31. +
    32. Sort field 2: [% AuthorisedValues.GetByCode('Bsort2', patron.sort2) | html %]
    33. [% END %] -
    34. +
    35. Username: [% patron.userid | html %]
    36. -
    37. +
    38. Password: [% IF ( patron.password ) %] ******* @@ -481,21 +481,21 @@
    39. [% IF ( patron.borrowernotes ) %] -
    40. +
    41. Circulation note: [% patron.borrowernotes | html %]
    42. [% END %] [% IF ( patron.opacnote ) %] -
    43. +
    44. OPAC note: [% patron.opacnote | html %]
    45. [% END %] [% IF ( Koha.Preference('CheckPrevCheckout') == 'softyes' || Koha.Preference('CheckPrevCheckout') == 'softno' ) %] -
    46. +
    47. Check previous checkouts: [% IF ( patron.checkprevcheckout == 'yes' ) %] Yes @@ -508,7 +508,7 @@ [% END %] [% IF Koha.Preference('TranslateNotices') %] -
    48. +
    49. Preferred language for notices: [% translated_language | html %]
    50. @@ -535,21 +535,21 @@
        [% IF ( patron.B_phone ) %] -
      1. +
      2. Phone: [% patron.B_phone |html %]
      3. [% END %] [% IF ( patron.B_email ) %] - [% END %] [% IF ( patron.contactnote ) %] -
      4. +
      5. Contact note: [% patron.contactnote |html %]
      6. @@ -573,56 +573,56 @@
          [% IF ( patron.altcontactsurname ) %] -
        1. +
        2. Surname: [% patron.altcontactsurname | html %]
        3. [% END %] [% IF ( patron.altcontactfirstname ) %] -
        4. +
        5. First name: [% patron.altcontactfirstname | html %]
        6. [% END %] [% IF ( patron.altcontactaddress1 ) %] -
        7. +
        8. Address: [% patron.altcontactaddress1 | html %]
        9. [% END %] [% IF ( patron.altcontactaddress2 ) %] -
        10. +
        11. Address 2: [% patron.altcontactaddress2 | html %]
        12. [% END %] [% IF ( patron.altcontactaddress3 ) %] -
        13. +
        14. City: [% patron.altcontactaddress3 | html %]
        15. [% END %] [% IF ( patron.altcontactstate ) %] -
        16. +
        17. State: [% patron.altcontactstate | html %]
        18. [% END %] [% IF ( patron.altcontactzipcode ) %] -
        19. +
        20. ZIP/Postal code: [% patron.altcontactzipcode | html %]
        21. [% END %] [% IF ( patron.altcontactcountry ) %] -
        22. +
        23. Country: [% patron.altcontactcountry | html %]
        24. [% END %] [% IF ( patron.altcontactphone ) %] -
        25. +
        26. Phone: [% patron.altcontactphone | html %]
        27. -- 2.1.4