📅 Current plan information:
{% if plan_data.warning %}
{{ plan_data.warning }}
{% endif %}
Plan name: {{ plan_data.current_plan.name }}
Status: {{ plan_data.current_plan.get_plan_status_as_text() }}
{% if plan_data.is_legacy_plan %}
End date: {{ plan_data.current_plan.end_date.strftime('%d %B %Y') }}
{% else %}
Billing schedule: {% if plan_data.current_plan.billing_schedule == plan_data.current_plan.BILLING_SCHEDULE_ANNUAL %}Annual{% else %}Monthly{% endif %}
Licenses: {{ plan_data.licenses_used }}/{{ plan_data.licenses }} ({% if plan_data.current_plan.automanage_licenses %}Automatic{% else %}Manual{% endif %})
{% if plan_data.current_plan.price_per_license %}
Price per license: ${{ plan_data.current_plan.price_per_license/100 }}
{% elif plan_data.current_plan.fixed_price %}
Fixed price: ${{ plan_data.current_plan.fixed_price/100 }}
{% endif %}
Next invoice date: {{ plan_data.current_plan.next_invoice_date.strftime('%d %B %Y') }}
{% endif %}