mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-07-08 10:28:57 -04:00
- Deleted /stylesheets folder - Removed sass build from gulpfile - Changed gov links to usa links - Changed other govuk styles, like breadcrumbs - Changed name of uk_components file to us_components - Fixed a few tests that broke on account of the changes
30 lines
1.2 KiB
HTML
30 lines
1.2 KiB
HTML
{% from "components/big-number.html" import big_number_with_status %}
|
|
|
|
<div class="ajax-block-container">
|
|
<div class="grid-row grid-gap">
|
|
<div id="total-sms" class="grid-col-12">
|
|
{{ big_number_with_status(
|
|
statistics['sms']['requested'],
|
|
statistics['sms']['requested']|message_count_label('sms', suffix='sent'),
|
|
statistics['sms']['failed'],
|
|
statistics['sms']['failed_percentage'],
|
|
statistics['sms']['show_warning'],
|
|
failure_link=url_for(".view_notifications", service_id=service_id, message_type='sms', status='failed'),
|
|
link=url_for(".view_notifications", service_id=service_id, message_type='sms', status='sending,delivered,failed'),
|
|
smaller=True,
|
|
) }}
|
|
</div>
|
|
<!-- <div id="total-email" class="grid-col-6">
|
|
<span class="big-number-with-status pilot-disabled">
|
|
<a class="usa-link display-block margin-bottom-1">
|
|
<span class="big-number-smaller">
|
|
<span class="big-number-number">0</span>
|
|
<span class="big-number-label">emails sent</span>
|
|
</span>
|
|
</a>
|
|
<span class="big-number-status">No failures</span>
|
|
</span>
|
|
</div> -->
|
|
</div>
|
|
</div>
|