{% extends "wagtail_subscriptions/base.html" %} {% load subscription_tags %} {% block title %}Pricing Plans{% endblock %} {% block content %}

Simple, Transparent Pricing

Choose the perfect plan for your needs. Upgrade or downgrade at any time.

{% price_table %}

Feature Comparison

{% for plan in plans %} {% endfor %} {% for module in modules %} {% for feature in module.features.all %} {% for plan in plans %} {% endfor %} {% endfor %} {% endfor %}
Features{{ plan.name }}
{{ module.name }}

{{ feature.name }}

{% if feature.description %}

{{ feature.description }}

{% endif %}
{% with plan_feature=plan.plan_features.all|dictsort:"feature.slug" %} {% for pf in plan_feature %} {% if pf.feature.slug == feature.slug %} {% if pf.is_included %} {% if feature.feature_type == 'quota' %} {% if pf.effective_quota %} {{ pf.effective_quota }} {{ feature.quota_unit }} {% else %} Unlimited {% endif %} {% else %} {% endif %} {% else %} {% endif %} {% endif %} {% endfor %} {% endwith %}

Frequently Asked Questions

Can I change my plan at any time?

Yes, you can upgrade or downgrade your plan at any time. Changes are prorated and will be reflected in your next billing cycle.

Do you offer a free trial?

Yes, most of our plans come with a free trial period. You can start using our service immediately without any upfront payment.

What payment methods do you accept?

We accept all major credit cards, PayPal, and other payment methods through our secure payment processors.

Can I cancel my subscription?

Yes, you can cancel your subscription at any time from your customer portal. You'll continue to have access until the end of your current billing period.

{% endblock %}