Bug 7633 - Move display of patron image in self checkout
This patch moves the display of the patron image in self-checkout from above the checkout form into a column to the right of the form. The patch also corrects an error in the display of the page title which was preventing correct display of the library name. To test this change confirm that the page title shows the value of your LibraryName system preference or "Koha" if the preference is empty. http://bugs.koha-community.org/show_bug.cgi?id=7631 Signed-off-by: Liz Rea <wizzyrea@gmail.com> Confirmed working as expected. Passes template tests. Signed-off-by: Paul Poulain <paul.poulain@biblibre.com>
This commit is contained in:
parent
b2180b8bd4
commit
7bda8970ae
1 changed files with 12 additions and 9 deletions
|
@ -1,4 +1,4 @@
|
|||
[% INCLUDE 'doc-head-open.inc' %][% LibraryName %] › Self Checkout </title>
|
||||
[% INCLUDE 'doc-head-open.inc' %][% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha [% END %] › Self Checkout </title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<meta name="generator" content="Koha [% Version %]" /> <!-- leave this for stats -->
|
||||
<link rel="shortcut icon" href="[% themelang %]/includes/favicon.ico" type="image/x-icon" />
|
||||
|
@ -67,7 +67,6 @@ $(document).ready(function() {
|
|||
|
||||
<div id="masthead"><h1>[% LibraryName %] Self Checkout System</h1></div>
|
||||
<div id="bd">
|
||||
<div class="yui-g">
|
||||
|
||||
[% IF ( impossible ) %]<!-- We tried to issue, but failed. -->
|
||||
<div class="dialog alert"><h3>Item cannot be checked out.</h3><p>Sorry, This item cannot be checked out at this station. </p>
|
||||
|
@ -162,9 +161,6 @@ Sorry, This Self-Checkout Station has lost authentication. Please contact the a
|
|||
[% IF ( patronid ) %]
|
||||
[% IF ( validuser ) %]
|
||||
<h3 class="warning">You are logged in as [% borrowername %].</h3>
|
||||
[% IF ( display_patron_image ) %]
|
||||
<img src="/cgi-bin/koha/sco/sco-patron-image.pl?cardnumber=[% cardnumber %]" alt="" />
|
||||
[% END %]
|
||||
[% END %]
|
||||
</div>
|
||||
[% IF ( nouser ) %]
|
||||
|
@ -178,6 +174,7 @@ Sorry, This Self-Checkout Station has lost authentication. Please contact the a
|
|||
<br />
|
||||
[% END %]
|
||||
[% IF ( validuser ) %]
|
||||
[% IF ( display_patron_image ) %]<div class="yui-ge"><div class="yui-u first">[% END %]
|
||||
<div id="newcheckout" class="sco_entry">
|
||||
<form id="scan_form" name="scan_form" method="post" action="/cgi-bin/koha/sco/sco-main.pl" onsubmit="return checkout_confirm('[% patronid %]');">
|
||||
<fieldset><legend> Check out[% IF ( AllowSelfCheckReturns ) %], return[% END %] or renew an item: </legend>
|
||||
|
@ -190,7 +187,14 @@ Sorry, This Self-Checkout Station has lost authentication. Please contact the a
|
|||
</form>
|
||||
<div><form method="post" action="/cgi-bin/koha/sco/sco-main.pl?op=logout" ><input type="submit" value="Finish" class="finish" /></form></div>
|
||||
</div> <!-- sco_entry --> <!-- newcheckout -->
|
||||
|
||||
[% IF ( display_patron_image ) %]</div> <!-- /yui-u first -->[% END %]
|
||||
[% IF ( display_patron_image ) %]
|
||||
<div class="yui-u">
|
||||
<img src="/cgi-bin/koha/sco/sco-patron-image.pl?cardnumber=[% cardnumber %]" alt="" />
|
||||
</div>
|
||||
[% END %]
|
||||
</div> <!-- /yui-ge -->
|
||||
<div class="yui-g">
|
||||
<div id="borrowerdetails">
|
||||
[% IF ( issues_count ) %]
|
||||
<table id="loanTable"><caption>Checkouts for [% borrowername %] <span class="count">([% issues_count %] total)</span></caption>
|
||||
|
@ -233,7 +237,7 @@ Sorry, This Self-Checkout Station has lost authentication. Please contact the a
|
|||
[% ELSE %]
|
||||
<h3>You currently have nothing checked out.</h3>
|
||||
[% END %]
|
||||
|
||||
</div> <!-- /yui-g -->
|
||||
[% ELSE %]<!-- not validuser -->
|
||||
<div class="sco_entry" >
|
||||
<form id="mainform" action="/cgi-bin/koha/sco/sco-main.pl" name="mainform" method="post">
|
||||
|
@ -258,5 +262,4 @@ Sorry, This Self-Checkout Station has lost authentication. Please contact the a
|
|||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
[% INCLUDE 'opac-bottom.inc' %]
|
||||
|
|
Loading…
Reference in a new issue