plugins: updated query_editor
[myslice.git] / plugins / active_filters / static / active_filters.html
1 <div id='{{domid}}__myActiveFilters' style='clear:both;'>
2
3         <!-- TEMPLATE -->
4         <div id='{{domid}}__template' class='template'>
5                  <div id='{% templatetag openvariable %} id {% templatetag closevariable %}' class='filterButton' style='float:left;margin-bottom:10px;'>
6                         <span>{% templatetag openvariable %} span {% templatetag closevariable %}</span>
7             <img src='/all-static/img/details_close.png' class='closeButton' style='padding-left:3px;'/>
8                 </div>
9         </div>
10
11         {% for filter in filters %}
12         <div id='{{domid}}__filter__{{filter.key}}{{filter.op_str}}{{filter.value}}' class='filterButton' style='float:left;margin-bottom:10px;'>
13                 <span>{{filter.key}}__{{filter.op}}__{{filter.value}}</span>
14         <img src='/all-static/img/details_close.png' class='closeButton' style='padding-left:3px;'/>
15         </div>
16         {% endfor %}
17
18 </div>
19
20 <div id='clearFilters' class='paging_full_numbers' style='clear:both;'>
21     <span class='paginate_button'>Clear</span>
22 </div>
23
24 <div style='clear:both;'></div>