Plan: {{ stripe_product.name }}
Monthly Credits: {{ stripe_product.credit_amount }} credits
Price: ${{ stripe_product.price }}/month
{% else %}Plan: Unknown Plan
{% endif %} {% endwith %} {% if subscription.current_period_start and subscription.current_period_end %}Billing Period: {{ subscription.current_period_start|date:"M d, Y" }} - {{ subscription.current_period_end|date:"M d, Y" }}
{% endif %} {% if subscription.days_until_renewal is not None %} {% if subscription.days_until_renewal > 0 %}Next Billing: {{ subscription.days_until_renewal }} days
{% elif subscription.days_until_renewal == 0 %}Next Billing: Today
{% else %}Status: Billing period expired
{% endif %} {% endif %} {% if subscription.cancel_at_period_end %}Cancellation Scheduled: Your subscription will end on {{ subscription.current_period_end|date:"M d, Y" }}