{% extends "vendor/manage/base.html" %} {% load i18n %} {% block vendor_content %}
{% for item in object_list %} {% empty %} {% endfor %}
{% trans '#' %} {% trans 'Subscription ID' %} {% trans 'Subscription' %} {% trans 'Profile' %} {% trans 'Start Date' %} {% trans 'End Date' %} {% trans 'Status' %} {% trans 'Total' %}
{{ forloop.counter }} {{ item.gateway_id }} {{ item.receipts.first.order_item.offer }} {{ item.profile }} {{ item.receipts.first.start_date|date:"M d, Y" }} {{ item.receipts.last.end_date|date:"M d, Y" }} {{ item.get_status_display }} ${{ item.products.first.order_item.price }}
{% trans 'No Orders' %}
{% endblock %}