{% load static %} Subscription Plans - Tayapromediverse
Tayapromediverse Logo

Choose Your Subscription Plan

Select the plan that best fits your needs

{% if current_subscription %}

✓ Current Active Subscription

Plan: {{ current_subscription.plan.name }}

Status: {{ current_subscription.get_status_display }}

{% if current_subscription.end_date %}

Valid Until: {{ current_subscription.end_date|date:"F d, Y" }}

Days Remaining: {{ current_subscription.days_remaining }}

{% endif %}
{% endif %}
{% for plan in plans %}
{{ plan.get_plan_type_display }}
{{ plan.name }}
${{ plan.price }} / year
Billed annually
{% if plan.description %}
{{ plan.description }}
{% endif %}
    {% if plan.plan_type == 'practitioner' %}
  • Full access to practitioner tools
  • Patient management system
  • Advanced analytics
  • Priority support
  • {% else %}
  • Full access to patient portal
  • Health tracking tools
  • Appointment scheduling
  • 24/7 support
  • {% endif %}
{% empty %}

No subscription plans available at this time.

{% endfor %}
← Back to Dashboard
{% if messages %} {% endif %}