Lines 7-13
Link Here
|
7 |
[% SET OpacNav = AdditionalContents.get( location => "OpacNav", lang => lang, library => logged_in_user.branchcode || default_branch, blocktitle => 0 ) %] |
7 |
[% SET OpacNav = AdditionalContents.get( location => "OpacNav", lang => lang, library => logged_in_user.branchcode || default_branch, blocktitle => 0 ) %] |
8 |
[% SET OpacNavBottom = AdditionalContents.get( location => "OpacNavBottom", lang => lang, library => logged_in_user.branchcode || default_branch, blocktitle => 0 ) %] |
8 |
[% SET OpacNavBottom = AdditionalContents.get( location => "OpacNavBottom", lang => lang, library => logged_in_user.branchcode || default_branch, blocktitle => 0 ) %] |
9 |
[% INCLUDE 'doc-head-open.inc' %] |
9 |
[% INCLUDE 'doc-head-open.inc' %] |
10 |
<title>My virtual card › [% IF ( LibraryNameTitle ) %][% LibraryNameTitle | html %][% ELSE %]Koha online[% END %] catalog</title> |
10 |
<title>Your library card › [% IF ( LibraryNameTitle ) %][% LibraryNameTitle | html %][% ELSE %]Koha online[% END %] catalog</title> |
11 |
[% INCLUDE 'doc-head-close.inc' %] |
11 |
[% INCLUDE 'doc-head-close.inc' %] |
12 |
[% BLOCK cssinclude %] |
12 |
[% BLOCK cssinclude %] |
13 |
[% END %] |
13 |
[% END %] |
Lines 21-27
Link Here
|
21 |
<a href="/cgi-bin/koha/opac-user.pl">[% INCLUDE 'patron-title.inc' patron = logged_in_user %]</a> |
21 |
<a href="/cgi-bin/koha/opac-user.pl">[% INCLUDE 'patron-title.inc' patron = logged_in_user %]</a> |
22 |
[% END %] |
22 |
[% END %] |
23 |
[% WRAPPER breadcrumb_item bc_active= 1 %] |
23 |
[% WRAPPER breadcrumb_item bc_active= 1 %] |
24 |
<span>My virtual card</span> |
24 |
<span>Your library card</span> |
25 |
[% END %] |
25 |
[% END %] |
26 |
[% END #/ WRAPPER breadcrumbs %] |
26 |
[% END #/ WRAPPER breadcrumbs %] |
27 |
|
27 |
|
Lines 30-54
Link Here
|
30 |
<div class="col-lg-2"> |
30 |
<div class="col-lg-2"> |
31 |
<div id="navigation"> [% INCLUDE 'navigation.inc' IsPatronPage=1 %] </div> |
31 |
<div id="navigation"> [% INCLUDE 'navigation.inc' IsPatronPage=1 %] </div> |
32 |
</div> |
32 |
</div> |
33 |
<div class="col-10 order-first order-lg-2"> |
33 |
<div class="col-lg-10 order-first order-lg-2"> |
34 |
<h1>My virtual card </h1> |
34 |
<h1>Your library card </h1> |
35 |
<div id="patron-virtual-card"> |
35 |
<div id="patron-virtual-card"> |
36 |
[% IF ( display_patron_image ) %] |
36 |
[% IF ( display_patron_image ) %] |
37 |
<div id="image-container"> |
37 |
<div id="image-container"> |
38 |
<img id="patron-image" src="/cgi-bin/koha/opac-patron-image.pl" alt="" /> |
38 |
<img id="patron-image" src="/cgi-bin/koha/opac-patron-image.pl" alt="" /> |
39 |
</div> |
39 |
</div> |
40 |
[% END %] |
40 |
[% END %] |
41 |
<div id="barcode-container"> |
41 |
<div id="card-details"> |
42 |
<svg id="patron-barcode" data-barcode="[% patron.cardnumber | html %]" data-barcode-format="[% barcode_format | html %]"></svg> |
42 |
<div id="barcode-container"> |
43 |
</div> |
43 |
<svg id="patron-barcode" data-barcode="[% patron.cardnumber | html %]" data-barcode-format="[% barcode_format | html %]"></svg> |
44 |
<div id="lib-container"> |
44 |
</div> |
45 |
<p id="patron-lib"><strong>Library:</strong> [% Branches.GetName( patron.branchcode ) | html %]</p> |
45 |
<div id="lib-container"> |
46 |
</div> |
46 |
<p id="patron-lib"><strong>Library:</strong> [% Branches.GetName( patron.branchcode ) | html %]</p> |
47 |
<div id="cardnumber-container"> |
47 |
</div> |
48 |
<p id="patron-cardnumber"><strong>Card number:</strong> [% patron.cardnumber | html %]</p> |
48 |
<div id="cardnumber-container"> |
49 |
</div> |
49 |
<p id="patron-cardnumber"><strong>Card number:</strong> [% patron.cardnumber | html %]</p> |
50 |
<div id="dateexpiry-container"> |
50 |
</div> |
51 |
<p id="patron-dateexpiry"><strong>Expiration date:</strong> [% patron.dateexpiry | $KohaDates %]</p> |
51 |
<div id="dateexpiry-container"> |
|
|
52 |
<p id="patron-dateexpiry"><strong>Expiration date:</strong> [% patron.dateexpiry | $KohaDates %]</p> |
53 |
</div> |
52 |
</div> |
54 |
</div> |
53 |
</div> |
55 |
</div> |
54 |
</div> |
56 |
</div> |
55 |
- |
|
|