webstaff: move print button for in-house use page
authorGalen Charlton <gmc@esilibrary.com>
Wed, 16 Nov 2016 10:31:06 +0000 (05:31 -0500)
committerGalen Charlton <gmc@esilibrary.com>
Wed, 16 Nov 2016 10:31:06 +0000 (05:31 -0500)
Move it to the lower-right-hand corner to be consistent
with other circulation interfaces.

Signed-off-by: Galen Charlton <gmc@esilibrary.com>
Open-ILS/src/templates/staff/circ/in_house_use/index.tt2

index edf032c..184212e 100644 (file)
   items-provider="gridDataProvider"
   persist-key="circ.in_house_use">
 
-  <eg-grid-menu-item handler="print_list" label="[% l('Print List') %]"></eg-grid-menu-item>
-
   <eg-grid-field label="[% l('# of Uses') %]"   path='num_uses' visible></eg-grid-field>
   <eg-grid-field label="[% l('Barcode') %]"     path='copy.barcode' visible></eg-grid-field>
   <eg-grid-field label="[% l('Call Number') %]" path="copy.call_number.label" visible></eg-grid-field>
   <eg-grid-field label="[% l('Location') %]"    path="copy.location.name" visible></eg-grid-field>
   <eg-grid-field label="[% l('Title') %]"       path="title" visible></eg-grid-field>
 </eg-grid>
+
+<div class="flex-row pad-vert">
+  <div class="flex-cell"></div>
+  <div class="pad-horiz">
+    <button class="btn btn-default"
+      ng-click="print_list()">[% l('Print List') %]</button>
+  </div>
+</div>
 
 [% END %]