From ff0d1a352c78072d6359b8633be81906e99064bc Mon Sep 17 00:00:00 2001
From: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
Date: Thu, 8 Apr 2021 11:27:21 +0200
Subject: [PATCH] Bug 18912: Split info into different columns

---
 .../prog/en/modules/circ/circulation.tt             | 13 +++++++------
 1 file changed, 7 insertions(+), 6 deletions(-)

diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt
index a8806e9edf..6f0d439771 100644
--- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt
+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt
@@ -485,6 +485,9 @@
                                                             <th>Title</th>
                                                             <th>Barcode</th>
                                                             <th>Call number</th>
+                                                            <th>Copy number</th>
+                                                            <th>Inventory number</th>
+                                                            <th>Serial enumeration</th>
                                                             <th>Collection</th>
                                                             [% IF ( item_level_itypes ) %]<th>Item type</th>[% END %]
                                                             <th>&nbsp;</th>
@@ -499,12 +502,10 @@
                                                             <td>
                                                                 [% item.barcode | html %]
                                                             </td>
-                                                            <td>
-                                                                [% IF item.itemcallnumber %][% item.itemcallnumber | html %][% END %]
-                                                                [% IF item.copynumber %]<br /> Copy number: [% item.copynumber | html %][% END %]
-                                                                [% IF item.stocknumber %]<br /> Inventory number: [% item.stocknumber | html %][% END %]
-                                                                [% IF item.enumchron %]<br /> Serial enumeration: [% item.enumchron | html %][% END %]
-                                                            </td>
+                                                            <td>[% item.itemcallnumber | html %]</th>
+                                                            <td>[% item.copynumber | html %]</th>
+                                                            <td>[% item.stocknumber| html %]</th>
+                                                            <td>[% item.enumchron| html %]</th>
                                                             <td>
                                                                 [% AuthorisedValues.GetDescriptionByKohaField( kohafield => 'items.ccode', authorised_value => item.ccode ) | html %]
                                                             </td>
-- 
2.20.1