{% extends "admin/base_site.html" %} {% load i18n %} {% block content %}

{% trans "change price by"|capfirst %}:

{% csrf_token %} {{ form }} {% blocktrans %}

If 10 is entered, then price for all selected products increases by 10%. For product with price 200 new price will be 220.

Negative numbers will reduce the price.

Will be applied to:

{% endblocktrans %} {% for obj in queryset %} {% endfor %}
{% endblock %}