mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-04-17 07:42:15 -04:00
24 lines
664 B
HTML
24 lines
664 B
HTML
{% from "components/big-number.html" import big_number %}
|
|
|
|
<div class='govuk-grid-row ajax-block-container'>
|
|
<div class='govuk-grid-column-one-half'>
|
|
<div class="keyline-block">
|
|
{% if sms_cost %}
|
|
{{ big_number(
|
|
sms_cost,
|
|
'spent on text messages',
|
|
currency="$",
|
|
smaller=True
|
|
) }}
|
|
{% else %}
|
|
{{ big_number(sms_allowance_remaining, 'free text messages left', smaller=True) }}
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
<div class='govuk-grid-column-one-half'>
|
|
<div class="keyline-block">
|
|
{{ big_number("No email", 'during SMS pilot', smaller=True) }}
|
|
</div>
|
|
</div>
|
|
</div>
|