plugins: updated query_editor
[myslice.git] / plugins / hazelnut / hazelnut.html
1 <div id='main-{{ domid }}'>
2   <table class='table table-striped table-bordered dataTable' id='hazelnut-{{ domid }}'>
3     <thead>
4       <tr>
5         {% for column in columns %}
6         <th>{{ column }}</th>
7         {% endfor %} 
8         {% for column in hidden_columns %}
9         <th>{{ column }}</th>
10         {% endfor %} 
11         {% if checkboxes %}
12                 <th>+/-</th>
13                 {% endif %}
14           </tr>
15         </thead> 
16     <tbody>
17     </tbody>
18     <tfoot>
19       <tr>
20         {% for column in columns %}
21             <th>{{ column }}</th>
22         {% endfor %} 
23         {% for column in hidden_columns %}
24             <th>{{ column }}</th>
25         {% endfor %} 
26         {% if checkboxes %}
27                 <th>+/-</th>
28                 {% endif %}
29           </tr>
30     </tfoot> 
31   </table>
32 </div>
33 <div class="hazelnut-spacer"></div>