2017-07-21 10:30:55 +01:00
|
|
|
{% extends "views/platform-admin/_base_template.html" %}
|
2017-07-21 09:14:29 +01:00
|
|
|
{% from "components/textbox.html" import textbox %}
|
|
|
|
|
{% from "components/checkbox.html" import checkbox %}
|
|
|
|
|
{% from "components/page-footer.html" import page_footer %}
|
|
|
|
|
{% from "components/big-number.html" import big_number, big_number_with_status %}
|
|
|
|
|
{% from "components/message-count-label.html" import message_count_label %}
|
|
|
|
|
{% from "components/table.html" import mapping_table, field, stats_fields, row_group, row, right_aligned_field_heading, hidden_field_heading, text_field %}
|
2018-09-19 12:39:36 +01:00
|
|
|
{% from "components/form.html" import form_wrapper %}
|
2017-07-21 09:14:29 +01:00
|
|
|
|
|
|
|
|
{% macro stats_fields(channel, data) -%}
|
|
|
|
|
|
|
|
|
|
{% call field(border=False) %}
|
|
|
|
|
<span class="heading-medium">{{ channel.title() }}</span>
|
|
|
|
|
{% endcall %}
|
|
|
|
|
|
|
|
|
|
{% call field(align='right', border=False) %}
|
|
|
|
|
{{ big_number(data[channel]['sending'], smaller=True) }}
|
|
|
|
|
{% endcall %}
|
|
|
|
|
|
|
|
|
|
{% call field(align='right', border=False) %}
|
|
|
|
|
{{ big_number(data[channel]['delivered'], smaller=True) }}
|
|
|
|
|
{% endcall %}
|
|
|
|
|
|
|
|
|
|
{% call field(align='right', status='error' if data[channel]['failed'], border=False) %}
|
|
|
|
|
{{ big_number(data[channel]['failed'], smaller=True) }}
|
|
|
|
|
{% endcall %}
|
|
|
|
|
|
|
|
|
|
{%- endmacro %}
|
|
|
|
|
|
|
|
|
|
{% macro services_table(services, caption) %}
|
|
|
|
|
{% call(item, row_number) mapping_table(
|
|
|
|
|
caption=caption,
|
|
|
|
|
caption_visible=False,
|
|
|
|
|
field_headings=[
|
|
|
|
|
'Service',
|
|
|
|
|
hidden_field_heading('Type'),
|
|
|
|
|
right_aligned_field_heading('Sending'),
|
|
|
|
|
right_aligned_field_heading('Delivered'),
|
|
|
|
|
right_aligned_field_heading('Failed')
|
|
|
|
|
],
|
|
|
|
|
field_headings_visible=True
|
|
|
|
|
) %}
|
|
|
|
|
|
|
|
|
|
{% for service in services %}
|
|
|
|
|
|
|
|
|
|
{% call row_group() %}
|
|
|
|
|
|
|
|
|
|
{% call row() %}
|
|
|
|
|
{% call field(border=False) %}
|
|
|
|
|
<a href="{{ url_for('main.service_dashboard', service_id=service['id']) }}" class="browse-list-link">{{ service['name'] }}</a>
|
|
|
|
|
{% endcall %}
|
|
|
|
|
|
|
|
|
|
{{ stats_fields('email', service['stats']) }}
|
|
|
|
|
{% endcall %}
|
|
|
|
|
|
|
|
|
|
{% call row() %}
|
|
|
|
|
{% if not service['active'] %}
|
2017-11-01 16:33:06 +00:00
|
|
|
{% call field(status='default', border=False) %}
|
2017-07-21 09:14:29 +01:00
|
|
|
<span class="heading-medium">archived</span>
|
|
|
|
|
{% endcall %}
|
|
|
|
|
{% elif service['research_mode'] %}
|
|
|
|
|
{% call field(border=False) %}
|
|
|
|
|
<span class="research-mode">research mode</span>
|
|
|
|
|
{% endcall %}
|
|
|
|
|
{% elif not service['restricted'] %}
|
2017-11-01 16:33:06 +00:00
|
|
|
{% call field(status='error', border=False) %}
|
2017-07-21 09:14:29 +01:00
|
|
|
<span class="heading-medium">Live</span>
|
|
|
|
|
{% endcall %}
|
|
|
|
|
{% else %}
|
2017-11-02 13:39:37 +00:00
|
|
|
{% call field(border=False) %}
|
|
|
|
|
{% endcall %}
|
2017-07-21 09:14:29 +01:00
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
|
|
{{ stats_fields('sms', service['stats']) }}
|
|
|
|
|
{% endcall %}
|
|
|
|
|
|
2017-11-01 16:33:06 +00:00
|
|
|
{% call row() %}
|
|
|
|
|
|
|
|
|
|
{% call field(border=False) %}
|
|
|
|
|
|
|
|
|
|
{% endcall %}
|
|
|
|
|
{{ stats_fields('letter', service['stats']) }}
|
|
|
|
|
|
|
|
|
|
{% endcall %}
|
|
|
|
|
|
2017-07-21 09:14:29 +01:00
|
|
|
{% endcall %}
|
|
|
|
|
|
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
|
|
{% endcall %}
|
|
|
|
|
{% endmacro %}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
{% block per_page_title %}
|
|
|
|
|
{{ page_title|capitalize }}
|
|
|
|
|
{% endblock %}
|
|
|
|
|
|
2017-07-21 10:30:55 +01:00
|
|
|
{% block platform_admin_content %}
|
2017-07-21 09:14:29 +01:00
|
|
|
|
|
|
|
|
<h1 class="heading-large">
|
|
|
|
|
{{ page_title|capitalize }}
|
|
|
|
|
</h1>
|
|
|
|
|
|
|
|
|
|
<details>
|
|
|
|
|
<summary>Apply filters</summary>
|
2018-09-19 12:39:36 +01:00
|
|
|
{% call form_wrapper(method="get") %}
|
2017-07-21 09:14:29 +01:00
|
|
|
{{ textbox(form.start_date, hint="Enter start date in format YYYY-MM-DD") }}
|
|
|
|
|
{{ textbox(form.end_date, hint="Enter end date in format YYYY-MM-DD") }}
|
|
|
|
|
{{ checkbox(form.include_from_test_key) }}
|
|
|
|
|
</br>
|
2018-02-01 13:32:27 +00:00
|
|
|
<button type="submit" class="button">Filter</button>
|
2018-09-19 12:39:36 +01:00
|
|
|
{% endcall %}
|
2017-07-21 09:14:29 +01:00
|
|
|
</details>
|
|
|
|
|
|
|
|
|
|
{% include "views/platform-admin/_global_stats.html" %}
|
|
|
|
|
|
|
|
|
|
{{ services_table(services, page_title|capitalize) }}
|
|
|
|
|
|
|
|
|
|
{% endblock %}
|