|
Lines 640-704
Link Here
|
| 640 |
<h3>Alternative contact</h3> |
640 |
<h3>Alternative contact</h3> |
| 641 |
<a class="btn btn-default btn-xs" href="memberentry.pl?op=modify&borrowernumber=[% patron.borrowernumber | html %]&step=2"><i class="fa fa-pencil"></i> Edit</a> |
641 |
<a class="btn btn-default btn-xs" href="memberentry.pl?op=modify&borrowernumber=[% patron.borrowernumber | html %]&step=2"><i class="fa fa-pencil"></i> Edit</a> |
| 642 |
</div> |
642 |
</div> |
|
|
643 |
<!-- Change below here DR --> |
| 644 |
<div class="address"> |
| 645 |
<ul> |
| 646 |
[% IF Koha.Preference( 'AddressFormat' ) %] |
| 647 |
[% INCLUDE "member-display-altv-address-style-${ Koha.Preference( 'AddressFormat' ) }.inc" %] |
| 648 |
[% ELSE %] |
| 649 |
[% INCLUDE 'member-display-altv-address-style-us.inc' %] |
| 650 |
[% END %] |
| 651 |
</ul> |
| 652 |
</div> |
| 643 |
<div class="rows"> |
653 |
<div class="rows"> |
| 644 |
<ol> |
654 |
<ol> |
| 645 |
[% IF ( patron.altcontactsurname ) %] |
|
|
| 646 |
<li id="patron-altcontactsurname"> |
| 647 |
<span class="label">Surname: </span> |
| 648 |
[% patron.altcontactsurname | html %] |
| 649 |
</li> |
| 650 |
[% END %] |
| 651 |
[% IF ( patron.altcontactfirstname ) %] |
| 652 |
<li id="patron-altcontactfirstname"> |
| 653 |
<span class="label">First name: </span> |
| 654 |
[% patron.altcontactfirstname | html %] |
| 655 |
</li> |
| 656 |
[% END %] |
| 657 |
[% IF ( patron.altcontactaddress1 ) %] |
| 658 |
<li id="patron-altcontactaddress1"> |
| 659 |
<span class="label">Address: </span> |
| 660 |
[% patron.altcontactaddress1 | html %] |
| 661 |
</li> |
| 662 |
[% END %] |
| 663 |
[% IF ( patron.altcontactaddress2 ) %] |
| 664 |
<li id="patron-altcontactaddress2"> |
| 665 |
<span class="label">Address 2: </span> |
| 666 |
[% patron.altcontactaddress2 | html %] |
| 667 |
</li> |
| 668 |
[% END %] |
| 669 |
[% IF ( patron.altcontactaddress3 ) %] |
| 670 |
<li id="patron-altcontactaddress3"> |
| 671 |
<span class="label">City: </span> |
| 672 |
[% patron.altcontactaddress3 | html %] |
| 673 |
</li> |
| 674 |
[% END %] |
| 675 |
|
| 676 |
[% IF ( patron.altcontactstate ) %] |
| 677 |
<li id="patron-altcontactstate"> |
| 678 |
<span class="label">State: </span> |
| 679 |
[% patron.altcontactstate | html %] |
| 680 |
</li> |
| 681 |
[% END %] |
| 682 |
[% IF ( patron.altcontactzipcode ) %] |
| 683 |
<li id="patron-altcontactzipcode"> |
| 684 |
<span class="label">ZIP/Postal code: </span> |
| 685 |
[% patron.altcontactzipcode | html %] |
| 686 |
</li> |
| 687 |
[% END %] |
| 688 |
[% IF ( patron.altcontactcountry ) %] |
| 689 |
<li id="patron-altcontactcountry"> |
| 690 |
<span class="label">Country: </span> |
| 691 |
[% patron.altcontactcountry | html %] |
| 692 |
</li> |
| 693 |
[% END %] |
| 694 |
[% IF ( patron.altcontactphone ) %] |
655 |
[% IF ( patron.altcontactphone ) %] |
| 695 |
<li id="patron-altcontactphone"> |
656 |
<li id="patron-altcontactphone"> |
| 696 |
<span class="label">Phone: </span> |
657 |
<span class="label">Phone: </span> |
| 697 |
<a href="tel:[% patron.altcontactphone | url %]">[% patron.altcontactphone | html %]</a> |
658 |
<a href="tel:[% patron.altcontactphone | uri %]">[% patron.altcontactphone |html %]</a> |
| 698 |
</li> |
659 |
</li> |
| 699 |
[% END %] |
660 |
[% END %] |
| 700 |
</ol> |
661 |
</ol> |
| 701 |
</div> [% # /div.rows %] |
662 |
</div> |
|
|
663 |
<!-- Change above here DR --> |
| 702 |
[% ELSE %] |
664 |
[% ELSE %] |
| 703 |
<div class="patroninfo-heading"> |
665 |
<div class="patroninfo-heading"> |
| 704 |
<h3>Alternative contact</h3> |
666 |
<h3>Alternative contact</h3> |
|
Lines 707-713
Link Here
|
| 707 |
[% END %] |
669 |
[% END %] |
| 708 |
</div> [% # /div#patron-alternative-contact %] |
670 |
</div> [% # /div#patron-alternative-contact %] |
| 709 |
</div> <!-- /div.col-sm-6 --> |
671 |
</div> <!-- /div.col-sm-6 --> |
| 710 |
</div> <!-- /div.row --> |
672 |
<!-- May need changing DR --> </div> <!-- /div.row --> |
| 711 |
|
673 |
|
| 712 |
<div id="finesholdsissues" class="toptabs"> |
674 |
<div id="finesholdsissues" class="toptabs"> |
| 713 |
<ul> |
675 |
<ul> |
| 714 |
- |
|
|