Bugzilla – Attachment 84111 Details for
Bug 19818
Add id into tag html from moremember.tt
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 19818: Thanks, this patch should work.
Bug-19818-Thanks-this-patch-should-work.patch (text/plain), 14.40 KB, created by
helene
on 2019-01-17 01:12:12 UTC
(
hide
)
Description:
Bug 19818: Thanks, this patch should work.
Filename:
MIME Type:
Creator:
helene
Created:
2019-01-17 01:12:12 UTC
Size:
14.40 KB
patch
obsolete
>From 5a528fad712b382f565159c09666704ae6ce4b4a Mon Sep 17 00:00:00 2001 >From: helene hickey <hickeyhe@wgc.school.nz> >Date: Thu, 17 Jan 2019 01:09:04 +0000 >Subject: [PATCH] Bug 19818: Thanks, this patch should work. > >--- > .../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 6e15e3c4d1..a5c2012cbe 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 @@ > </div> > <div class="rows"> > <ol> >- <li> >+ <li id="patron-cardnumber"> > <span class="label">Card number: </span> > [% patron.cardnumber | html %] > </li> >- <li> >+ <li id="patron-borrowernumber"> > <span class="label">Borrowernumber: </span> > [% patron.borrowernumber | html %] > </li> >- <li> >+ <li id="patron-categorydescription"> > <span class="label">Category: </span> > [% patron.category.description | html %] ([% patron.categorycode | html %]) > </li> >- <li> >+ <li id="patron-dateenrolled"> > <span class="label">Registration date: </span> > [% patron.dateenrolled | $KohaDates %] > </li> > > [% IF ( patron.date_renewed ) %] >- <li> >+ <li id="patron-daterenewed"> > <span class="label">Renewal date: </span> > [% patron.date_renewed | $KohaDates %] > </li> > [% END %] > >- <li> >+ <li id="patron-expirationdate"> > <span class="label">Expiration date: </span> > [% IF ( was_renewed ) %] > <strong class="reregistrinfo">[% patron.dateexpiry | $KohaDates %]</strong> >@@ -432,13 +432,13 @@ > [% patron.dateexpiry | $KohaDates %] > [% END %] > </li> >- <li> >+ <li id="patron-branchname"> > <span class="label">Library: </span> > [% branchname | html %] > </li> > > [% IF ( OPACPrivacy ) %] >- <li> >+ <li id="patron-privacypref"> > <span class="label">Privacy Pref:</span> > [% IF ( privacy0 ) %]Forever[% END %] > [% IF ( privacy1 ) %]Default[% END %] >@@ -446,7 +446,7 @@ > </li> > [% END %] > >- <li> >+ <li id="patron-privacyguarantor"> > <span class="label">Show checkouts to guarantor</span> > [% IF privacy_guarantor_checkouts %] > Yes >@@ -456,22 +456,22 @@ > </li> > > [% IF ( patron.sort1 ) %] >- <li> >+ <li id="patron-sort1"> > <span class="label">Sort field 1:</span> > [% AuthorisedValues.GetByCode('Bsort1', patron.sort1) | html %] > </li> > [% END %] > [% IF ( patron.sort2 ) %] >- <li> >+ <li id="patron-sort2"> > <span class="label">Sort field 2:</span> > [% AuthorisedValues.GetByCode('Bsort2', patron.sort2) | html %] > </li> > [% END %] >- <li> >+ <li id="patron-userid"> > <span class="label">Username: </span> > [% patron.userid | html %] > </li> >- <li> >+ <li id="patron-userid"> > <span class="label">Password: </span> > [% IF ( patron.password ) %] > ******* >@@ -481,21 +481,21 @@ > </li> > > [% IF ( patron.borrowernotes ) %] >- <li> >+ <li id="patron-borrowernotes"> > <span class="label">Circulation note: </span> > [% patron.borrowernotes | html %] > </li> > [% END %] > > [% IF ( patron.opacnote ) %] >- <li> >+ <li id="patron-opacnote"> > <span class="label">OPAC note:</span> > [% patron.opacnote | html %] > </li> > [% END %] > > [% IF ( Koha.Preference('CheckPrevCheckout') == 'softyes' || Koha.Preference('CheckPrevCheckout') == 'softno' ) %] >- <li> >+ <li id="patron-checkprev"> > <span class="label">Check previous checkouts: </span> > [% IF ( patron.checkprevcheckout == 'yes' ) %] > Yes >@@ -508,7 +508,7 @@ > [% END %] > > [% IF Koha.Preference('TranslateNotices') %] >- <li> >+ <li id="patron-translatenotices"> > <span class="label">Preferred language for notices: </span> > [% translated_language | html %] > </li> >@@ -535,21 +535,21 @@ > <div class="rows"> > <ol> > [% IF ( patron.B_phone ) %] >- <li> >+ <li id="patron-bphone"> > <span class="label">Phone: </span> > <a href="tel:[% patron.B_phone | uri %]">[% patron.B_phone |html %]</a> > </li> > [% END %] > > [% IF ( patron.B_email ) %] >- <li class="email"> >+ <li id="patron-bemail" class="email"> > <span class="label">Email: </span> > <a title="[% patron.B_email | html %]" href="mailto:[% patron.B_email | url %]">[% B_email |html %]</a> > </li> > [% END %] > > [% IF ( patron.contactnote ) %] >- <li> >+ <li id="patron-contactnote"> > <span class="label">Contact note: </span> > [% patron.contactnote |html %] > </li> >@@ -573,56 +573,56 @@ > <div class="rows"> > <ol> > [% IF ( patron.altcontactsurname ) %] >- <li> >+ <li id="patron-altcontactsurname"> > <span class="label">Surname: </span> > [% patron.altcontactsurname | html %] > </li> > [% END %] > [% IF ( patron.altcontactfirstname ) %] >- <li> >+ <li id="patron-altcontactfirstname"> > <span class="label">First name: </span> > [% patron.altcontactfirstname | html %] > </li> > [% END %] > [% IF ( patron.altcontactaddress1 ) %] >- <li> >+ <li id="patron-altcontactaddress1"> > <span class="label">Address: </span> > [% patron.altcontactaddress1 | html %] > </li> > [% END %] > [% IF ( patron.altcontactaddress2 ) %] >- <li> >+ <li id="patron-altcontactaddress2"> > <span class="label">Address 2: </span> > [% patron.altcontactaddress2 | html %] > </li> > [% END %] > [% IF ( patron.altcontactaddress3 ) %] >- <li> >+ <li id="patron-altcontactaddress3"> > <span class="label">City: </span> > [% patron.altcontactaddress3 | html %] > </li> > [% END %] > > [% IF ( patron.altcontactstate ) %] >- <li> >+ <li id="patron-altcontactstate"> > <span class="label">State: </span> > [% patron.altcontactstate | html %] > </li> > [% END %] > [% IF ( patron.altcontactzipcode ) %] >- <li> >+ <li id="patron-altcontactzipcode"> > <span class="label">ZIP/Postal code: </span> > [% patron.altcontactzipcode | html %] > </li> > [% END %] > [% IF ( patron.altcontactcountry ) %] >- <li> >+ <li id="patron-altcontactcountry"> > <span class="label">Country: </span> > [% patron.altcontactcountry | html %] > </li> > [% END %] > [% IF ( patron.altcontactphone ) %] >- <li> >+ <li id="patron-altcontactphone"> > <span class="label">Phone: </span> > <a href="tel:[% patron.altcontactphone | url %]">[% patron.altcontactphone | html %]</a> > </li> >-- >2.11.0
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 19818
:
70540
|
70555
|
70641
|
84040
|
84103
|
84111
|
84146
|
84239