{% extends "matrixhosting/base.html" %} {% load static i18n compress %} {% block title %} Payments {% endblock %} {% block content %} {% csrf_token %}

{% trans "Orders"%}

{% trans "ID"%}
{% trans "Date"%}
{% trans "Description" %}
{% trans "OneTime Price"%}
{% trans "Recurring Price"%}
{% trans "Currency"%}
{% trans "End Date"%}
{% trans "Active"%}
{% for order in object_list %}
#{{order.id}}
{{order.starting_date|date:"Y-m-d"}}
{{order.description}}
{{order.one_time_price}}
{{order.recurring_price}}
{{order.currency}}
{{order.ending_date|date:"Y-m-d"}}
{% if order.is_closed %} {% else %} {% endif %}
{% if not order.ending_date %} {% trans "Cancel Subscription"%} {% endif %}
{%endfor%}