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