realm
{{ realm.name }}
URL: {{ realm.uri }} |
stats |
activity
Date created: {{ realm.date_created|timesince }} ago
Admins: {{ realm_admin_emails(realm) }}
{% if realm.customer and realm.customer.sponsorship_pending %}
{% endif %}
{% if realm.current_plan %}
📅 Current plan
Name: {{ realm.current_plan.name }}
Status: {{realm.current_plan.get_plan_status_as_text()}}
Billing schedule: {% if realm.current_plan.billing_schedule == realm.current_plan.ANNUAL %}Annual{% else %}Monthly{% endif %}
Licenses: {{ realm.current_plan.licenses_used }}/{{ realm.current_plan.licenses }} ({% if realm.current_plan.automanage_licenses %}Automatic{% else %}Manual{% endif %})
{% if realm.current_plan.price_per_license %}
Price per license: ${{ realm.current_plan.price_per_license/100 }}
{% else %}
Fixed price: ${{ realm.current_plan.fixed_price/100 }}
{% endif %}
Payment method: {% if realm.current_plan.charge_automatically %}Card{% else %}Send invoice{% endif %}
Next invoice date: {{ realm.current_plan.next_invoice_date.strftime('%d %B %Y') }}
{% endif %}