renamed hazelnut into querytable
[myslice.git] / plugins / querytable / templates / querytable.html
1 <div id='main-{{ domid }}' class='querytable-spacer'>
2   <table class='table table-striped table-bordered dataTable' id='{{domid}}__table'>
3     <thead>
4       <tr>
5         {% for column in columns %} <th>{{ column }}</th> {% endfor %} 
6         {% for column in hidden_columns %} <th>{{ column }}</th> {% endfor %} 
7         {% if checkboxes %} <th class="checkbox">+/-</th> {% endif %}
8       </tr>
9     </thead> 
10     <tbody>
11     </tbody>
12     <tfoot>
13       <tr>
14         {% for column in columns %} <th>{{ column }}</th> {% endfor %} 
15         {% for column in hidden_columns %} <th>{{ column }}</th> {% endfor %} 
16         {% if checkboxes %} <th>+/-</th> {% endif %}
17       </tr>
18     </tfoot> 
19   </table>
20 </div>