form.tpl 391 B

12345678910111213
  1. <form id="filter" method="{{ method }}" action="{{ action }}">
  2. % include('button-nav', action=action)
  3. <details style="padding: 1em 0">
  4. <summary>Click to expand filter...</summary>
  5. <div class="pure-g">
  6. <%
  7. include('filter-set',
  8. product=product, category=category, group=group,
  9. tags=tags, units=units)
  10. %>
  11. </div>
  12. </details>
  13. </form>