{% extends 'subscriptions/base_developer.html' %} {% load i18n %} {% load currency_filters %} {% block title %}DFS Dashboard | Subscription Plans{% endblock %} {% block subscriptions_styles %} {% endblock %} {% block main %}

Subscription Plans

{% include 'subscriptions/snippets/messages.html' %} Create new plan {% if plans %}
{% trans "Plan name" %}
{% trans "Description" %}
{% trans "Tags" %}
{% trans "Costs" %}
{% for plan in plans %}
{% trans "Plan name" %} {{ plan.plan_name }}
{% trans "Description" %} {{ plan.plan_description }}
{% trans "Tags" %} {% if plan.display_tags %} {{ plan.display_tags }} {% else %} None {% endif %}
{% trans "Costs" %}
    {% for cost in plan.costs.all %}
  • {{ cost.cost|currency }} {{ cost.display_billing_frequency_text }}
  • {% endfor %}
{% trans "Edit" %} {% trans "Delete" %}
{% endfor %}
Create new plan {% else %}

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

{% endif %} {% endblock %}