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

{% trans "set discount by"|capfirst %}:

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

If 10 is entered, then discount price for all products will be 90% of price. For product with price 200 discount price will be 180.

Enter 0 to remove discount prices.

Will be applied to:

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