{% extends "vendorpromo/base.html" %} {% load i18n %} {% block vendor_content %}

{% trans 'Promotional Campaigns' %}

{% trans 'Manage Promotional Campaigns' %}
{% for item in object_list %} {% empty %} {% endfor %}
{% trans 'Name' %} {% trans 'Description' %} {% trans 'Type' %} {% trans 'End Date' %} {% trans 'Affiliate' %} {% trans 'Site' %}
{{ item.name }} {{ item.description|slice:20 }} {% if item.is_percentage_off %} {% trans 'Percentage' %} {% else %} {% trans 'Fixed Amount' %} {% endif %} {{ item.end_date }} {{ item.affiliate|default:"-" }} {{ item.site }} {% trans 'Edit' %}
{% trans 'No Promotional Campaigns' %}
{% blocktrans with start=page_obj.start_index end=page_obj.end_index total=paginator.count %} Showing {{ start }} to {{ end }} of {{ total }} entries. {% endblocktrans %}
{% endblock %} {% block extra_js %} {% endblock %}