{% extends 'base/base.html' %} {% load static %} {% block title %}Plan Comparison{% endblock %} {% block extra_head %} {# Removed plan_selection.js as toggle functionality is removed #} {# #} {% endblock %} {% block content %}

Choose Your Plan

{% if stripe_enabled %} {# Removed Billing toggle section #}
{% for plan in plans %}

{{ plan.name }}

Pricing

{# Simplified price display without toggle #}

{{ plan.price|floatformat:2 }} {{ plan.currency|upper }} {% if plan.interval == 'month' %}/month{% elif plan.interval == 'year' %}/year{% else %}{{ plan.interval }}{% endif %}

Features

{{ plan.description }}

{% empty %}

No plans available at this time.

{% endfor %}
{% else %}
Stripe integration is currently disabled. Plan comparison is not available.
{% endif %}
{% endblock %}