Bug 18789: Send Koha::Patron object to the templates
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / includes / member-display-alt-address-style-us.inc
index 78830ff..f2c38aa 100644 (file)
@@ -1,16 +1,16 @@
-[% IF ( B_address or B_address2 ) %]
-    [% IF ( B_address ) %]
+[% IF ( patron.B_address or patron.B_address2 ) %]
+    [% IF ( patron.B_address ) %]
         [% SET roadtype_desc = '' %]
-        [% IF B_streettype %]
-            [% SET roadtype_desc = AuthorisedValues.GetByCode('ROADTYPE', B_streettype) %]
+        [% IF patron.B_streettype %]
+            [% SET roadtype_desc = AuthorisedValues.GetByCode('ROADTYPE', patron.B_streettype) %]
         [% END %]
-        <li class="patronaddress1">[% if (B_streetnumber) %][% B_streetnumber |html %][% end %] [% B_address |html %] [% IF roadtype_desc %][% roadtype_desc |html %] [% END %][% end %]</li>
+        <li class="patronaddress1">[% if (patron.B_streetnumber) %][% patron.B_streetnumber |html %][% end %] [% patron.B_address |html %] [% IF roadtype_desc %][% roadtype_desc |html %] [% END %][% end %]</li>
     [% END %]
-    [% IF ( B_address2 ) %]
-        <li class="patronaddress2">[% B_address2 |html %]</li>
+    [% IF ( patron.B_address2 ) %]
+        <li class="patronaddress2">[% patron.B_address2 |html %]</li>
     [% END %]
 [% END %]
-[% IF ( B_city ) %]<li class="patroncity">
-        [% B_city |html %][% IF ( B_state ) %], [% B_state |html %][% END %]
-        [% B_zipcode |html %][% IF ( B_country ) %], [% B_country |html %][% END %]</li>
+[% IF ( patron.B_city ) %]<li class="patroncity">
+        [% patron.B_city |html %][% IF ( patron.B_state ) %], [% patron.B_state |html %][% END %]
+        [% patron.B_zipcode |html %][% IF ( patron.B_country ) %], [% patron.B_country |html %][% END %]</li>
 [% END %]