{# Product Selector Template #}

{{ __('Select Your Products') }}

{{ __('Choose up to') }} {{ selection_limit }} {{ __('items from the selection below.') }}

{% for product in products %}
{% endfor %}
{% if show_total %}
{{ __('Total Price:') }}
{% if pricing_mode == 'fixed' %} {{ currency_symbol }}{{ fixed_price }} {% else %} {{ currency_symbol }}0.00 {% endif %}
{% endif %}