{% from "components/page-header.html" import page_header %} {% extends "withnav_template.html" %} {% block org_page_title %} Organization Dashboard {% endblock %} {% block maincolumn_content %} {{ page_header('Organization Dashboard', size='large') }}

Overall {{ selected_year }} Usage

{{ "{:,}".format(messages_sent|default(0)) }} sent
Total Services
{{ total_services }}
{{ live_services }} Live {{ trial_services }} Trial {{ suspended_services }} Archived
Agreement Period
Jan 1 - Dec 31
Create new service Add org admin
{% if create_service_form %}

Create a new service

{{ create_service_form.name(param_extensions={"hint": {"text": "You can change this later"}}) }}
Cancel
{% endif %} {% if invite_user_form %}

Invite an organization administrator

{{ current_org.name }} administrators can access and manage all services, and invite or remove other organization administrators.

{{ invite_user_form.email_address(param_extensions={"classes": ""}, error_message_with_html=True) }}
Cancel
{% endif %} {% if edit_service_data %}

Manage Service

Service Status
Cancel {% if edit_service_data.status == 'trial' or current_user.platform_admin %} {% endif %}
Invite team member
{% endif %}

Services Overview

{% if services %} {% for service in services %} {% set is_new_service = new_service_id and service.id == new_service_id %} {% set is_updated_service = updated_service_id and service.id == updated_service_id %} {% endfor %} {% else %} {% endif %}
Name Status Usage Primary Contact Last Used Actions
{{ service.name }} {% if not service.active %} Archived {% elif service.restricted %} Trial {% else %} Live {% endif %} {{ service.usage }} {{ service.primary_contact }} {{ service.recent_template }} {% if service.active %} {% set is_managing = edit_service_data and edit_service_data.id == service.id %} {% if is_managing %} Manage {% else %} Manage {% endif %} {% endif %}
No services found within this organization
{% endblock %} {% block extra_javascripts %} {{ super() }} {% endblock %}