{% 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 }} Total Message Allowance

Total Services
{{ total_services }}
{{ live_services }} Live {{ trial_services }} Trial {{ suspended_services }} Suspended
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 a team member

{{ current_org.name }} team members can see usage and team members for each service, and invite other team members.

{{ 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 %}
{% 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 %} Suspended {% 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 %}