@@ -, +, @@ to circulation.pl --- .../intranet-tmpl/prog/en/css/staff-global.css | 14 +++++++++++++- .../prog/en/modules/circ/circulation.tt | 19 +++++++++++++------ 2 files changed, 26 insertions(+), 7 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/css/staff-global.css +++ a/koha-tmpl/intranet-tmpl/prog/en/css/staff-global.css @@ -333,6 +333,13 @@ fieldset { border-radius:5px; } +fieldset.lastchecked { + margin-bottom : 0; + border-bottom-width: 0; + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; +} + legend { font-size : 123.1%; font-weight : bold; @@ -2764,7 +2771,12 @@ span.onsite_checkout { border-radius: 4px; border : 1px solid #FFF2CE; } - +div.lastchecked { + padding : .2em 1em; + border: 2px solid #BCDB89; + border-bottom-left-radius: 5px; + border-bottom-right-radius: 5px; +} .branchgriditem { background-color: #fff; border: 1px solid #b9d8d9; --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt @@ -526,7 +526,11 @@ No patron matched [% message %]
-
+[% IF ( issue ) %] +
+[% ELSE %] +
+[% END %] [% IF ( DisplayClearScreenButton ) %] x [% END %] @@ -597,7 +601,14 @@ No patron matched [% message %] [% END %]
-[% END %] +[% IF ( issue ) %] +
+

Checked out: [% issue.item.biblio.title %] ([% issue.item.barcode %]). Due on [% issue.date_due | $KohaDates %]

+
+[% END %] + + +[% END %] [% IF ( noissues ) %] [% IF ( Koha.Preference('OnSiteCheckouts') && Koha.Preference('OnSiteCheckoutsForce') ) %] @@ -761,10 +772,6 @@ No patron matched [% message %] -[% IF ( issue ) %] -
[% issue.item.biblio.title %] ([% issue.item.barcode %]) due on [% issue.date_due | $KohaDates %]
-[% END %] -
--