LP#1615845 Item status view columns aligned
authorBill Erickson <berickxx@gmail.com>
Wed, 22 Feb 2017 20:14:27 +0000 (15:14 -0500)
committerDan Wells <dbw2@calvin.edu>
Fri, 3 Mar 2017 20:01:58 +0000 (15:01 -0500)
Removes the redundant TCN value from the item status view so that the
columns can once again be vertically aligned.  The TCN is visible in the
bib summary pane along the top.

Signed-off-by: Bill Erickson <berickxx@gmail.com>
Signed-off-by: Terran McCanna <tmccanna@georgialibraries.org>
Signed-off-by: Dan Wells <dbw2@calvin.edu>
Open-ILS/src/templates/staff/cat/item/t_summary_pane.tt2

index 5935f87..345eb23 100644 (file)
@@ -1,10 +1,3 @@
-<style>
-/* FIXME: move me */
-#item-status-alert-msg {
-  flex:7; /* fill the remaining horizontal space */
-}
-</style>
-
 <div class="">
 
   <div class="flex-row">
   </div>
 
   <div class="flex-row">
-    <div class="flex-cell">[% l('TCN') %]</div>
-    <div class="flex-cell well">{{copy.call_number().record().tcn_value()}}</div>
-
     <div class="flex-cell">[% l('Circulate') %]</div>
     <div class="flex-cell well">{{copy.circulate()}}</div>
 
 
     <div class="flex-cell">[% l('Age-based Hold Protection') %]</div>
     <div class="flex-cell well">{{copy.age_protect().name()}}</div>
-    <!-- empty -->
-    <div class="flex-cell"></div>
-    <div class="flex-cell"></div>
 
     <div class="flex-cell">[% l('Checkin Workstation') %]</div>
     <div class="flex-cell well">
 
   <div class="flex-row">
     <div class="flex-cell">[% l('Alert Message') %]</div>
-    <div id="item-status-alert-msg" class="well">
-      {{copy.alert_message()}}
-    </div>
+    <div class="well" style="flex:7">{{copy.alert_message()}}</div>
   </div>
 
 </div>