Lines 400-430
Link Here
|
400 |
</div> |
400 |
</div> |
401 |
<div class="rows"> |
401 |
<div class="rows"> |
402 |
<ol> |
402 |
<ol> |
403 |
<li> |
403 |
<li id="patron-cardnumber"> |
404 |
<span class="label">Card number: </span> |
404 |
<span class="label">Card number: </span> |
405 |
[% patron.cardnumber | html %] |
405 |
[% patron.cardnumber | html %] |
406 |
</li> |
406 |
</li> |
407 |
<li> |
407 |
<li id="patron-borrowernumber"> |
408 |
<span class="label">Borrowernumber: </span> |
408 |
<span class="label">Borrowernumber: </span> |
409 |
[% patron.borrowernumber | html %] |
409 |
[% patron.borrowernumber | html %] |
410 |
</li> |
410 |
</li> |
411 |
<li> |
411 |
<li id="patron-categorydescription"> |
412 |
<span class="label">Category: </span> |
412 |
<span class="label">Category: </span> |
413 |
[% patron.category.description | html %] ([% patron.categorycode | html %]) |
413 |
[% patron.category.description | html %] ([% patron.categorycode | html %]) |
414 |
</li> |
414 |
</li> |
415 |
<li> |
415 |
<li id="patron-dateenrolled"> |
416 |
<span class="label">Registration date: </span> |
416 |
<span class="label">Registration date: </span> |
417 |
[% patron.dateenrolled | $KohaDates %] |
417 |
[% patron.dateenrolled | $KohaDates %] |
418 |
</li> |
418 |
</li> |
419 |
|
419 |
|
420 |
[% IF ( patron.date_renewed ) %] |
420 |
[% IF ( patron.date_renewed ) %] |
421 |
<li> |
421 |
<li id="patron-daterenewed"> |
422 |
<span class="label">Renewal date: </span> |
422 |
<span class="label">Renewal date: </span> |
423 |
[% patron.date_renewed | $KohaDates %] |
423 |
[% patron.date_renewed | $KohaDates %] |
424 |
</li> |
424 |
</li> |
425 |
[% END %] |
425 |
[% END %] |
426 |
|
426 |
|
427 |
<li> |
427 |
<li id="patron-expirationdate"> |
428 |
<span class="label">Expiration date: </span> |
428 |
<span class="label">Expiration date: </span> |
429 |
[% IF ( was_renewed ) %] |
429 |
[% IF ( was_renewed ) %] |
430 |
<strong class="reregistrinfo">[% patron.dateexpiry | $KohaDates %]</strong> |
430 |
<strong class="reregistrinfo">[% patron.dateexpiry | $KohaDates %]</strong> |
Lines 432-444
Link Here
|
432 |
[% patron.dateexpiry | $KohaDates %] |
432 |
[% patron.dateexpiry | $KohaDates %] |
433 |
[% END %] |
433 |
[% END %] |
434 |
</li> |
434 |
</li> |
435 |
<li> |
435 |
<li id="patron-branchname"> |
436 |
<span class="label">Library: </span> |
436 |
<span class="label">Library: </span> |
437 |
[% branchname | html %] |
437 |
[% branchname | html %] |
438 |
</li> |
438 |
</li> |
439 |
|
439 |
|
440 |
[% IF ( OPACPrivacy ) %] |
440 |
[% IF ( OPACPrivacy ) %] |
441 |
<li> |
441 |
<li id="patron-privacypref"> |
442 |
<span class="label">Privacy Pref:</span> |
442 |
<span class="label">Privacy Pref:</span> |
443 |
[% IF ( privacy0 ) %]Forever[% END %] |
443 |
[% IF ( privacy0 ) %]Forever[% END %] |
444 |
[% IF ( privacy1 ) %]Default[% END %] |
444 |
[% IF ( privacy1 ) %]Default[% END %] |
Lines 446-452
Link Here
|
446 |
</li> |
446 |
</li> |
447 |
[% END %] |
447 |
[% END %] |
448 |
|
448 |
|
449 |
<li> |
449 |
<li id="patron-privacyguarantor"> |
450 |
<span class="label">Show checkouts to guarantor</span> |
450 |
<span class="label">Show checkouts to guarantor</span> |
451 |
[% IF privacy_guarantor_checkouts %] |
451 |
[% IF privacy_guarantor_checkouts %] |
452 |
Yes |
452 |
Yes |
Lines 456-477
Link Here
|
456 |
</li> |
456 |
</li> |
457 |
|
457 |
|
458 |
[% IF ( patron.sort1 ) %] |
458 |
[% IF ( patron.sort1 ) %] |
459 |
<li> |
459 |
<li id="patron-sort1"> |
460 |
<span class="label">Sort field 1:</span> |
460 |
<span class="label">Sort field 1:</span> |
461 |
[% AuthorisedValues.GetByCode('Bsort1', patron.sort1) | html %] |
461 |
[% AuthorisedValues.GetByCode('Bsort1', patron.sort1) | html %] |
462 |
</li> |
462 |
</li> |
463 |
[% END %] |
463 |
[% END %] |
464 |
[% IF ( patron.sort2 ) %] |
464 |
[% IF ( patron.sort2 ) %] |
465 |
<li> |
465 |
<li id="patron-sort2"> |
466 |
<span class="label">Sort field 2:</span> |
466 |
<span class="label">Sort field 2:</span> |
467 |
[% AuthorisedValues.GetByCode('Bsort2', patron.sort2) | html %] |
467 |
[% AuthorisedValues.GetByCode('Bsort2', patron.sort2) | html %] |
468 |
</li> |
468 |
</li> |
469 |
[% END %] |
469 |
[% END %] |
470 |
<li> |
470 |
<li id="patron-userid"> |
471 |
<span class="label">Username: </span> |
471 |
<span class="label">Username: </span> |
472 |
[% patron.userid | html %] |
472 |
[% patron.userid | html %] |
473 |
</li> |
473 |
</li> |
474 |
<li> |
474 |
<li id="patron-userid"> |
475 |
<span class="label">Password: </span> |
475 |
<span class="label">Password: </span> |
476 |
[% IF ( patron.password ) %] |
476 |
[% IF ( patron.password ) %] |
477 |
******* |
477 |
******* |
Lines 481-501
Link Here
|
481 |
</li> |
481 |
</li> |
482 |
|
482 |
|
483 |
[% IF ( patron.borrowernotes ) %] |
483 |
[% IF ( patron.borrowernotes ) %] |
484 |
<li> |
484 |
<li id="patron-borrowernotes"> |
485 |
<span class="label">Circulation note: </span> |
485 |
<span class="label">Circulation note: </span> |
486 |
[% patron.borrowernotes | html %] |
486 |
[% patron.borrowernotes | html %] |
487 |
</li> |
487 |
</li> |
488 |
[% END %] |
488 |
[% END %] |
489 |
|
489 |
|
490 |
[% IF ( patron.opacnote ) %] |
490 |
[% IF ( patron.opacnote ) %] |
491 |
<li> |
491 |
<li id="patron-opacnote"> |
492 |
<span class="label">OPAC note:</span> |
492 |
<span class="label">OPAC note:</span> |
493 |
[% patron.opacnote | html %] |
493 |
[% patron.opacnote | html %] |
494 |
</li> |
494 |
</li> |
495 |
[% END %] |
495 |
[% END %] |
496 |
|
496 |
|
497 |
[% IF ( Koha.Preference('CheckPrevCheckout') == 'softyes' || Koha.Preference('CheckPrevCheckout') == 'softno' ) %] |
497 |
[% IF ( Koha.Preference('CheckPrevCheckout') == 'softyes' || Koha.Preference('CheckPrevCheckout') == 'softno' ) %] |
498 |
<li> |
498 |
<li id="patron-checkprev"> |
499 |
<span class="label">Check previous checkouts: </span> |
499 |
<span class="label">Check previous checkouts: </span> |
500 |
[% IF ( patron.checkprevcheckout == 'yes' ) %] |
500 |
[% IF ( patron.checkprevcheckout == 'yes' ) %] |
501 |
Yes |
501 |
Yes |
Lines 508-514
Link Here
|
508 |
[% END %] |
508 |
[% END %] |
509 |
|
509 |
|
510 |
[% IF Koha.Preference('TranslateNotices') %] |
510 |
[% IF Koha.Preference('TranslateNotices') %] |
511 |
<li> |
511 |
<li id="patron-translatenotices"> |
512 |
<span class="label">Preferred language for notices: </span> |
512 |
<span class="label">Preferred language for notices: </span> |
513 |
[% translated_language | html %] |
513 |
[% translated_language | html %] |
514 |
</li> |
514 |
</li> |
Lines 535-555
Link Here
|
535 |
<div class="rows"> |
535 |
<div class="rows"> |
536 |
<ol> |
536 |
<ol> |
537 |
[% IF ( patron.B_phone ) %] |
537 |
[% IF ( patron.B_phone ) %] |
538 |
<li> |
538 |
<li id="patron-bphone"> |
539 |
<span class="label">Phone: </span> |
539 |
<span class="label">Phone: </span> |
540 |
<a href="tel:[% patron.B_phone | uri %]">[% patron.B_phone |html %]</a> |
540 |
<a href="tel:[% patron.B_phone | uri %]">[% patron.B_phone |html %]</a> |
541 |
</li> |
541 |
</li> |
542 |
[% END %] |
542 |
[% END %] |
543 |
|
543 |
|
544 |
[% IF ( patron.B_email ) %] |
544 |
[% IF ( patron.B_email ) %] |
545 |
<li class="email"> |
545 |
<li id="patron-bemail" class="email"> |
546 |
<span class="label">Email: </span> |
546 |
<span class="label">Email: </span> |
547 |
<a title="[% patron.B_email | html %]" href="mailto:[% patron.B_email | url %]">[% B_email |html %]</a> |
547 |
<a title="[% patron.B_email | html %]" href="mailto:[% patron.B_email | url %]">[% B_email |html %]</a> |
548 |
</li> |
548 |
</li> |
549 |
[% END %] |
549 |
[% END %] |
550 |
|
550 |
|
551 |
[% IF ( patron.contactnote ) %] |
551 |
[% IF ( patron.contactnote ) %] |
552 |
<li> |
552 |
<li id="patron-contactnote"> |
553 |
<span class="label">Contact note: </span> |
553 |
<span class="label">Contact note: </span> |
554 |
[% patron.contactnote |html %] |
554 |
[% patron.contactnote |html %] |
555 |
</li> |
555 |
</li> |
Lines 573-628
Link Here
|
573 |
<div class="rows"> |
573 |
<div class="rows"> |
574 |
<ol> |
574 |
<ol> |
575 |
[% IF ( patron.altcontactsurname ) %] |
575 |
[% IF ( patron.altcontactsurname ) %] |
576 |
<li> |
576 |
<li id="patron-altcontactsurname"> |
577 |
<span class="label">Surname: </span> |
577 |
<span class="label">Surname: </span> |
578 |
[% patron.altcontactsurname | html %] |
578 |
[% patron.altcontactsurname | html %] |
579 |
</li> |
579 |
</li> |
580 |
[% END %] |
580 |
[% END %] |
581 |
[% IF ( patron.altcontactfirstname ) %] |
581 |
[% IF ( patron.altcontactfirstname ) %] |
582 |
<li> |
582 |
<li id="patron-altcontactfirstname"> |
583 |
<span class="label">First name: </span> |
583 |
<span class="label">First name: </span> |
584 |
[% patron.altcontactfirstname | html %] |
584 |
[% patron.altcontactfirstname | html %] |
585 |
</li> |
585 |
</li> |
586 |
[% END %] |
586 |
[% END %] |
587 |
[% IF ( patron.altcontactaddress1 ) %] |
587 |
[% IF ( patron.altcontactaddress1 ) %] |
588 |
<li> |
588 |
<li id="patron-altcontactaddress1"> |
589 |
<span class="label">Address: </span> |
589 |
<span class="label">Address: </span> |
590 |
[% patron.altcontactaddress1 | html %] |
590 |
[% patron.altcontactaddress1 | html %] |
591 |
</li> |
591 |
</li> |
592 |
[% END %] |
592 |
[% END %] |
593 |
[% IF ( patron.altcontactaddress2 ) %] |
593 |
[% IF ( patron.altcontactaddress2 ) %] |
594 |
<li> |
594 |
<li id="patron-altcontactaddress2"> |
595 |
<span class="label">Address 2: </span> |
595 |
<span class="label">Address 2: </span> |
596 |
[% patron.altcontactaddress2 | html %] |
596 |
[% patron.altcontactaddress2 | html %] |
597 |
</li> |
597 |
</li> |
598 |
[% END %] |
598 |
[% END %] |
599 |
[% IF ( patron.altcontactaddress3 ) %] |
599 |
[% IF ( patron.altcontactaddress3 ) %] |
600 |
<li> |
600 |
<li id="patron-altcontactaddress3"> |
601 |
<span class="label">City: </span> |
601 |
<span class="label">City: </span> |
602 |
[% patron.altcontactaddress3 | html %] |
602 |
[% patron.altcontactaddress3 | html %] |
603 |
</li> |
603 |
</li> |
604 |
[% END %] |
604 |
[% END %] |
605 |
|
605 |
|
606 |
[% IF ( patron.altcontactstate ) %] |
606 |
[% IF ( patron.altcontactstate ) %] |
607 |
<li> |
607 |
<li id="patron-altcontactstate"> |
608 |
<span class="label">State: </span> |
608 |
<span class="label">State: </span> |
609 |
[% patron.altcontactstate | html %] |
609 |
[% patron.altcontactstate | html %] |
610 |
</li> |
610 |
</li> |
611 |
[% END %] |
611 |
[% END %] |
612 |
[% IF ( patron.altcontactzipcode ) %] |
612 |
[% IF ( patron.altcontactzipcode ) %] |
613 |
<li> |
613 |
<li id="patron-altcontactzipcode"> |
614 |
<span class="label">ZIP/Postal code: </span> |
614 |
<span class="label">ZIP/Postal code: </span> |
615 |
[% patron.altcontactzipcode | html %] |
615 |
[% patron.altcontactzipcode | html %] |
616 |
</li> |
616 |
</li> |
617 |
[% END %] |
617 |
[% END %] |
618 |
[% IF ( patron.altcontactcountry ) %] |
618 |
[% IF ( patron.altcontactcountry ) %] |
619 |
<li> |
619 |
<li id="patron-altcontactcountry"> |
620 |
<span class="label">Country: </span> |
620 |
<span class="label">Country: </span> |
621 |
[% patron.altcontactcountry | html %] |
621 |
[% patron.altcontactcountry | html %] |
622 |
</li> |
622 |
</li> |
623 |
[% END %] |
623 |
[% END %] |
624 |
[% IF ( patron.altcontactphone ) %] |
624 |
[% IF ( patron.altcontactphone ) %] |
625 |
<li> |
625 |
<li id="patron-altcontactphone"> |
626 |
<span class="label">Phone: </span> |
626 |
<span class="label">Phone: </span> |
627 |
<a href="tel:[% patron.altcontactphone | url %]">[% patron.altcontactphone | html %]</a> |
627 |
<a href="tel:[% patron.altcontactphone | url %]">[% patron.altcontactphone | html %]</a> |
628 |
</li> |
628 |
</li> |
629 |
- |
|
|