]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/templates/staff/share/print_templates/t_grid_html.tt2
LP 1772053: Cleanup Dan's code.
[Evergreen.git] / Open-ILS / src / templates / staff / share / print_templates / t_grid_html.tt2
1 <!--
2   Autogrid HTML print template.
3 -->
4 <div>
5   <style>
6     .grid-table {
7       border-collapse: collapse;
8       margin: 1px;
9     }
10     .grid-table td {
11       padding: 2px;
12       border: 1px solid #aaa;
13     }
14   </style>
15   <table class="grid-table">
16     <thead>
17       <tr><th ng-repeat="col in columns">{{col.label}}</th></tr>
18     </thead>
19     <tbody>
20       <tr ng-repeat="item in items track by $index">
21         <td ng-repeat="col in columns"><span>{{item[col.name]}}</span></td>
22       </tr>
23     </tbody>
24   </table>
25 </div>
26