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

Subscription Plans

{% if messages %} {% endif %}
Back to dashboard
Create new plan
{% if plans %} {% for plan in plans %} {% endfor %}
{% trans "Plan name" %} {% trans "Plan description" %} {% trans "Plan tags" %} {% trans "Plan costs" %}
{{ plan.plan_name }} {{ plan.plan_description }} {{ plan.display_tags }}
    {% for cost in plan.costs.all %}
  • {{ cost.cost|currency }} {{ cost.display_billing_frequency_text }}
  • {% endfor %}
{% trans "Edit" %} {% trans "Delete" %}
{% else %}

{% trans "No subscription plans have been added yet." %}

{% endif %} {% endblock %}