mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-23 20:01:01 -05:00
Also replaces `column-third`, with `govuk-grid-column-one-third`, since this appears to be an alias of `column-one-third`.
34 lines
916 B
HTML
34 lines
916 B
HTML
{% from "components/big-number.html" import big_number %}
|
|
|
|
<div class='govuk-grid-row ajax-block-container'>
|
|
<div class='govuk-grid-column-one-third'>
|
|
<div class="keyline-block">
|
|
{{ big_number("Unlimited", 'free email allowance', smaller=True) }}
|
|
</div>
|
|
</div>
|
|
<div class='govuk-grid-column-one-third'>
|
|
<div class="keyline-block">
|
|
{% if sms_chargeable %}
|
|
{{ big_number(
|
|
sms_chargeable * sms_rate,
|
|
'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-third'>
|
|
<div class="keyline-block">
|
|
{{ big_number(
|
|
letter_cost,
|
|
'spent on letters',
|
|
currency="£",
|
|
smaller=True
|
|
) }}
|
|
</div>
|
|
</div>
|
|
</div>
|