{% extends "oscar/dashboard/catalogue/product_bulk_action.html" %} {% load i18n form_tags currency_filters %} {% block prepend_form %}
{% trans "Warning" %}: {% trans "This action will update all existing stockrecords of each selected product within the selected partners." %}
{% endblock prepend_form %} {% block form_fields %} {% include "oscar/dashboard/partials/form_field.html" with field=form.new_price %} {% include "oscar/dashboard/partials/form_field.html" with field=form.increase_by_amount %} {% include "oscar/dashboard/partials/form_field.html" with field=form.increase_by_percentage %} {% if form.partners.field.queryset.exists %} {% include "oscar/dashboard/partials/form_field.html" with field=form.partners %} {% endif %} {% endblock %} {% block extra_column_headers %} {% trans "Lowest current price" %} {% trans "Specific price" %} {% endblock %} {% block extra_column_values %} {% with price_field=form|child_price_field:product.pk %} {{ product.cheapest_price|currency:product.cheapest_price_currency|default:"-" }} {% if row.selectable %} {{ price_field }} {% if price_field.errors %}
{{ price_field.errors|join:", " }}
{% endif %} {% endif %} {% endwith %} {% endblock %}