Lines 1-52
Link Here
|
1 |
[% INCLUDE 'doc-head-open.inc' %][% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] catalog › Your payment |
|
|
2 |
[% INCLUDE 'doc-head-close.inc' %] |
3 |
[% BLOCK cssinclude %][% END %] |
4 |
</head> |
5 |
|
6 |
<body id="opac-account-pay-return" class="scrollto"> |
7 |
[% INCLUDE 'masthead.inc' %] |
8 |
|
9 |
<div class="main"> |
10 |
<ul class="breadcrumb"> |
11 |
<li><a href="/cgi-bin/koha/opac-main.pl">Home</a> <span class="divider">›</span></li> |
12 |
<li><a href="/cgi-bin/koha/opac-user.pl">[% borrower.firstname %] [% borrower.surname %]</a> <span class="divider">›</span></li> |
13 |
<li><a href="#">Your payment</a></li> |
14 |
</ul> |
15 |
|
16 |
<div class="container-fluid"> |
17 |
<div class="row-fluid"> |
18 |
<div class="span2"> |
19 |
<div id="navigation"> |
20 |
[% INCLUDE 'navigation.inc' IsPatronPage=1 %] |
21 |
</div> |
22 |
</div> |
23 |
<div class="span10"> |
24 |
<div id="useraccount" class="maincontent"> |
25 |
[% IF error %] |
26 |
<div id="error" class="dialog alert"> |
27 |
<p><strong>Error:</strong> there was an problem processing your payment</p> |
28 |
|
29 |
[% IF error == "PAYPAL_UNABLE_TO_CONNECT" %] |
30 |
<p>Unable to connect to PayPal.</p> |
31 |
<p>Please try again later.</p> |
32 |
[% ELSIF error == "PAYPAL_ERROR_PROCESSING" %] |
33 |
<p>Unable to verify payment.</p> |
34 |
<p>Please contact the library to verify your payment.</p> |
35 |
[% END %] |
36 |
</div> |
37 |
[% ELSIF amount %] |
38 |
<div class="dialog message"> |
39 |
<p><strong>Payment applied:</strong> your payment of [% amount %] has been applied to your account</p> |
40 |
</div> |
41 |
[% END %] |
42 |
|
43 |
<a href="/cgi-bin/koha/opac-account.pl">Return to fine details</a> |
44 |
</div> <!-- / #useraccount --> |
45 |
</div> <!-- / .span10 --> |
46 |
</div> <!-- / .row-fluid --> |
47 |
</div> <!-- / .container-fluid --> |
48 |
</div> <!-- / .main --> |
49 |
|
50 |
[% INCLUDE 'opac-bottom.inc' %] |
51 |
|
52 |
[% BLOCK jsinclude %][% END %] |