vendor/sylius/sylius/src/Sylius/Bundle/UiBundle/Resources/views/Grid/Filter/money.html.twig line 1

Open in your IDE?
  1. {% form_theme form '@SyliusUi/Form/theme.html.twig' %}
  2. <div class="sylius-filters__group">
  3.     {{ form_row(form.greaterThan, {attr: {'placeholder': form.greaterThan.vars.label|trans}, 'label': filter.label|trans ~ ' | ' ~ form.greaterThan.vars.label|trans}) }}
  4.     <div class="disabled field">
  5.         <label>&nbsp;</label>
  6.         <input type="text" value="-" disabled>
  7.     </div>
  8.     {{ form_row(form.lessThan, {attr: { 'placeholder': form.lessThan.vars.label|trans }}) }}
  9.     {{ form_row(form.currency) }}
  10. </div>