Revised version of the resource page + related plugins
[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         <th class="checkbox">status</th>
9       </tr>
10     </thead> 
11     <tbody>
12     </tbody>
13     <tfoot>
14       <tr>
15         {% if checkboxes %} <th>+/-</th> {% endif %}
16         {% for column in columns %} <th>{{ column }}</th> {% endfor %} 
17         {% for column in hidden_columns %} <th>{{ column }}</th> {% endfor %} 
18         <th class="checkbox">status</th>
19       </tr>
20     </tfoot> 
21   </table>
22 </div>