Bug 22090: Add missing information to cash register CSV file
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / includes / member-display-alt-address-style-us.inc
1 [% IF ( patron.B_address or patron.B_address2 ) %]
2     [% IF ( patron.B_address ) %]
3         [% SET roadtype_desc = '' %]
4         [% IF patron.B_streettype %]
5             [% SET roadtype_desc = AuthorisedValues.GetByCode('ROADTYPE', patron.B_streettype) %]
6         [% END %]
7         <li class="patronaddress1">[% if (patron.B_streetnumber) | html %][% patron.B_streetnumber | html %][% end | html %] [% patron.B_address | html %] [% IF roadtype_desc %][% roadtype_desc | html %] [% END %][% end | html %]</li>
8     [% END %]
9     [% IF ( patron.B_address2 ) %]
10         <li class="patronaddress2">[% patron.B_address2 | html %]</li>
11     [% END %]
12 [% END %]
13 [% IF ( patron.B_city ) %]<li class="patroncity">
14         [% patron.B_city | html %][% IF ( patron.B_state ) %], [% patron.B_state | html %][% END %]
15         [% patron.B_zipcode | html %][% IF ( patron.B_country ) %], [% patron.B_country | html %][% END %]</li>
16 [% END %]