Files
notifications-admin/app/templates/views/dashboard/_usage.html

24 lines
687 B
HTML
Raw Normal View History

{% from "components/big-number.html" import big_number %}
<div class='govuk-grid-row ajax-block-container'>
2022-10-13 20:51:45 +00:00
<div class='govuk-grid-column-one-half'>
<div class="keyline-block">
{% if sms_cost %}
{{ big_number(
sms_cost,
'spent on text messages',
2022-10-12 20:16:22 +00:00
currency="$",
smaller=True
) }}
{% else %}
{{ big_number(sms_allowance_remaining, 'free text messages left', smaller=True) }}
{% endif %}
</div>
</div>
2023-03-07 17:15:31 -05:00
<div class='govuk-grid-column-one-half pilot-disabled'>
<div class="keyline-block">
2022-12-01 10:18:12 -05:00
{{ big_number("0", 'email disabled during SMS pilot', smaller=True) }}
</div>
2022-12-01 08:53:50 -05:00
</div>
</div>