realm
{{ realm.name }}
URL: {{ realm.uri }} |
stats |
activity
Date created: {{ realm.date_created|timesince }} ago
{% set owner_emails_string = get_realm_owner_emails_as_string(realm) %}
Owners: {{ owner_emails_string }}
{% if owner_emails_string %}
{% endif %}
{% set admin_emails_string = get_realm_admin_emails_as_string(realm) %}
Admins: {{ admin_emails_string }}
{% if admin_emails_string %}
{% endif %}
{% set first_human_user = realm.get_first_human_user() %}
{% if first_human_user %}
First human user: {{ first_human_user.delivery_email }}
{% else %}
First human user:
{% endif %}
{% if plan_data[realm.id].customer and plan_data[realm.id].customer.sponsorship_pending %}
{% endif %}
{% if plan_data[realm.id].current_plan %}
📅 Current plan
Name: {{ plan_data[realm.id].current_plan.name }}
Status: {{plan_data[realm.id].current_plan.get_plan_status_as_text()}}
Billing schedule: {% if plan_data[realm.id].current_plan.billing_schedule == plan_data[realm.id].current_plan.ANNUAL %}Annual{% else %}Monthly{% endif %}
Licenses: {{ plan_data[realm.id].licenses_used }}/{{ plan_data[realm.id].licenses }} ({% if plan_data[realm.id].current_plan.automanage_licenses %}Automatic{% else %}Manual{% endif %})
{% if plan_data[realm.id].current_plan.price_per_license %}
Price per license: ${{ plan_data[realm.id].current_plan.price_per_license/100 }}
{% else %}
Fixed price: ${{ plan_data[realm.id].current_plan.fixed_price/100 }}
{% endif %}
Next invoice date: {{ plan_data[realm.id].current_plan.next_invoice_date.strftime('%d %B %Y') }}
{% endif %}