Simple, Transparent Pricing
Choose the plan that fits your organization's needs
{% set pricing_plans = PricingPlan.get_active_plans() %}
{% if pricing_plans %}
{% for plan in pricing_plans %}
{% if plan.is_popular %}
Most Popular
{% endif %}
{{ plan.name }}
{% if plan.is_custom %}
Custom
{% else %}
€{{ "%.0f"|format(plan.monthly_price) }}
€{{ "%.0f"|format(plan.annual_price) }}
/month
{% endif %}
{% if plan.description %}
{{ plan.description }}
{% endif %}
{% for feature in plan.features %}
- {{ feature }}
{% endfor %}
{% if plan.is_custom %}
{{ plan.button_text }}
{% else %}
{% if plan.monthly_stripe_link or plan.annual_stripe_link %}
{{ plan.button_text }}
{% else %}
{{ plan.button_text }}
{% endif %}
{% endif %}
{% endfor %}
{% set has_non_custom_plans = pricing_plans | selectattr('is_custom', 'equalto', false) | list | length > 0 %}
{% if has_non_custom_plans %}