@@ -, +, @@ --- .../intranet-tmpl/prog/en/css/staff-global.css | 10 ++- .../intranet-tmpl/prog/en/modules/basket/basket.tt | 105 ++++++++++++++++---- 2 files changed, 94 insertions(+), 21 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/css/staff-global.css +++ a/koha-tmpl/intranet-tmpl/prog/en/css/staff-global.css @@ -2579,6 +2579,14 @@ fieldset.rows table.mceListBox { box-shadow: 0px 3px 2px 0px rgba(0, 0, 0, .5); } +.inline { + display : inline; +} + +.nowrap { + white-space: nowrap; +} + .tag_editor { background: transparent url("../../img/edit-tag.png") top left no-repeat; display : block; @@ -2589,4 +2597,4 @@ fieldset.rows table.mceListBox { text-indent: 100%; white-space: nowrap; overflow: hidden; -} +} --- a/koha-tmpl/intranet-tmpl/prog/en/modules/basket/basket.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/basket/basket.tt @@ -9,9 +9,35 @@ @import url([% themelang %]/css/print.css); [% ELSE %][% INCLUDE 'doc-head-close.inc' %] + - - +[% INCLUDE 'datatables-strings.inc' %] + @@ -279,23 +347,19 @@ function placeHold () { | Place hold [% END %] - [% END %] +

[% UNLESS ( print_basket ) %][% END %] - + [% FOREACH BIBLIO_RESULT IN BIBLIO_RESULTS %] - [% IF ( BIBLIO_RESULT.even ) %] - - [% ELSE %] - [% END %] [% UNLESS ( print_basket ) %] - + [% END %]
 Title Item typeLocationItems
@@ -317,14 +381,15 @@ function placeHold () { [% BIBLIO_RESULT.description %][% IF ( BIBLIO_RESULT.ITEM_RESULTS ) %][% FOREACH ITEM_RESULT IN BIBLIO_RESULT.ITEM_RESULTS %] -

- [% ITEM_RESULT.branchname %] [% ITEM_RESULT.location_description %] - [% IF ( ITEM_RESULT.itemcallnumber ) %] - ([% ITEM_RESULT.itemcallnumber %]) - [% END %] -

- [% END %][% ELSE %]This record has no items.[% END %]
+ [% IF ( BIBLIO_RESULT.ITEM_RESULTS ) %] + [% FOREACH ITEM_RESULT IN BIBLIO_RESULT.ITEM_RESULTS %] +
[% ITEM_RESULT.itemcallnumber %] [% ITEM_RESULT.branchname %] [% ITEM_RESULT.location_description %]
+ [% END %] + [% ELSE %] + This record has no items. + [% END %] +
--