Merge branch 'master' of ssh://git.onelab.eu/git/myslice-django
[myslice.git] / plugins / templates / quickfilter.html
1
2 <div id ='quick_filters'>
3 <table class='filters'>
4     <tr>
5     {% for criteria in list %}
6         <th class='top'>{{criteria.key}}</th>
7     {% endfor %}
8         <th class="top">Extra fields</th>
9     </tr>
10     <tr>
11     {% for criteria in list %}
12         <td class='top'>
13         <select id='{{uid}}-select_{{criteria.key}}' class='topselect QuickFilter_select'>
14             <option value=''>All</option>
15             {% for item in criteria.values%}
16                 <option value=''>{{item}}</option>
17             {% endfor %}
18         </select>
19         </td>
20     {% endfor %}
21         <td class='top'>
22         <select id='{{uid}}-select_extra' class='topselect QuickFilter_select'>
23             <option value=''>All</option>
24         </select>
25         </td>
26     </tr>
27 </table>
28 </div>