Files
notifications-admin/app/templates/views/dashboard/_usage.html
2022-12-01 08:53:50 -05:00

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>