mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-07-05 17:09:01 -04:00
This follows on from: - https://github.com/alphagov/notifications-admin/pull/1094 - https://github.com/alphagov/notifications-admin/pull/1109 It depends on: - [ ] https://github.com/alphagov/notifications-api/pull/829 A year is too long. Month-by-month is a better timeframe for making decisions or seeing patterns in your usage.
41 lines
1.3 KiB
HTML
41 lines
1.3 KiB
HTML
{% from "components/big-number.html" import big_number %}
|
|
{% from "components/message-count-label.html" import message_count_label %}
|
|
{% from "components/big-number.html" import big_number %}
|
|
{% from "components/table.html" import list_table, field, right_aligned_field_heading, row_heading, spark_bar_field %}
|
|
|
|
<div class='dashboard-table'>
|
|
{% call(item, row_number) list_table(
|
|
template_statistics,
|
|
caption="Templates used",
|
|
caption_visible=False,
|
|
empty_message='',
|
|
field_headings=[
|
|
'Template',
|
|
'Messages sent'
|
|
],
|
|
field_headings_visible=True
|
|
) %}
|
|
|
|
{% call row_heading() %}
|
|
<span class="spark-bar-label">
|
|
<a href="{{ url_for('.view_template', service_id=current_service.id, template_id=item.template_id) }}">{{ item.template_name }}</a>
|
|
<span class="file-list-hint">
|
|
{{ message_count_label(1, item.template_type, suffix='template')|capitalize }}
|
|
</span>
|
|
</span>
|
|
{% endcall %}
|
|
{% if template_statistics|length > 1 %}
|
|
{{ spark_bar_field(item.count, most_used_template_count) }}
|
|
{% else %}
|
|
{% call field() %}
|
|
<span id='{{item.template_id}}' class="heading-small">
|
|
{{ big_number(
|
|
item.count,
|
|
smallest=True
|
|
) }}
|
|
</span>
|
|
{% endcall %}
|
|
{% endif %}
|
|
{% endcall %}
|
|
</div>
|