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