{% extends "withnav_template.html" %} {% from "components/show-more.html" import show_more %} {% from "components/table.html" import list_table, field, right_aligned_field_heading, hidden_field_heading %} {% from "components/ajax-block.html" import ajax_block %} {% block service_page_title %} Dashboard {% endblock %} {% block maincolumn_content %}

Dashboard

{% if current_user.has_permissions('manage_templates') and not current_service.all_templates %} {% include 'views/dashboard/write-first-messages.html' %} {% endif %} {{ ajax_block(partials, updates_url, 'upcoming') }}

Messages sent

In the last seven days

{{ ajax_block(partials, updates_url, 'inbox') }} {{ ajax_block(partials, updates_url, 'totals') }} {{ ajax_block(partials, updates_url, 'template-statistics') }}

Usage

Daily

Across all services

Daily
Usage Remaining
{{ 5000 - daily_global_messages_remaining }} {{ daily_global_messages_remaining }}
{% if current_user.has_permissions('manage_service') %}

2023

{{ ajax_block(partials, updates_url, 'usage') }} {{ show_more( url_for(".usage", service_id=current_service['id']), 'See all usage' ) }} {% endif %}
{% endblock %}