{% extends template_extends %} {% load i18n %} {% block content %}

User Subscriptions

{% if messages %} {% endif %}
Back to dashboard
Create new user subscription
{% if users %} {% for user in users %} {% for subscription in user.subscriptions.all %} {% if forloop.first %} {% else %} {% endif %} {% endfor %} {% endfor %}
{% trans "User" %} {% trans "Plan" %} {% trans "Billing start date" %} {% trans "Billing end date" %} {% trans "Last billing date" %} {% trans "Next billing date" %} {% trans "Active?" %} {% trans "Cancelled?" %}
{{ user }} {{ subscription.plan }} {{ subscription.date_billing_start }} {{ subscription.date_billing_end }} {{ subscription.date_billing_last }} {{ subscription.date_billing_next }} {{ subscription.active }} {{ subscription.cancelled }} {% trans "Edit" %} {% trans "Delete" %}
{{ subscription.plan }} {{ subscription.date_billing_start }} {{ subscription.date_billing_end }} {{ subscription.date_billing_last }} {{ subscription.date_billing_next }} {{ subscription.active }} {{ subscription.cancelled }} {% trans "Edit" %} {% trans "Delete" %}
{% else %}

{% trans "No user subscriptions have been added yet." %}

{% endif %} {% if is_paginated %} {% endif %} {% endblock %}