{% extends "wagtailadmin/base.html" %} {% load i18n %} {% block titletag %}{% trans "Subscription Plans" %}{% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %} {% include "wagtailadmin/shared/header.html" with title="Subscription Plans" icon="list-ul" action_url="/admin/snippets/wagtail_subscriptions/subscriptionplan/add/" action_text="Add Plan" %}
{% if plans %} {% for plan in plans %} {% endfor %}
{% trans "Name" %} {% trans "Price" %} {% trans "Billing Period" %} {% trans "Trial Days" %} {% trans "Active" %} {% trans "Subscriptions" %} {% trans "Actions" %}
{{ plan.name }} ${{ plan.price }} {{ plan.get_billing_period_display }} {{ plan.trial_period_days }} {% if plan.is_active %} {% trans "Active" %} {% else %} {% trans "Inactive" %} {% endif %} {{ plan.subscriptions.count }} {% trans "Edit" %}
{% else %}

{% trans "No subscription plans yet" %}

{% trans "Create your first subscription plan to get started." %}

{% trans "Add Plan" %}
{% endif %}
{% endblock %}