2016-06-28 08:59:08 +01:00
|
|
|
{% from "components/big-number.html" import big_number %}
|
|
|
|
|
|
2023-06-08 13:12:00 -04:00
|
|
|
<div class='grid-row grid-gap ajax-block-container'>
|
2023-07-28 11:03:37 -04:00
|
|
|
<div class='grid-col-12'>
|
2016-06-28 08:59:08 +01:00
|
|
|
<div class="keyline-block">
|
2022-04-26 15:40:29 +01:00
|
|
|
{% if sms_cost %}
|
2016-06-28 08:59:08 +01:00
|
|
|
{{ big_number(
|
2022-04-26 15:40:29 +01:00
|
|
|
sms_cost,
|
2016-06-28 08:59:08 +01:00
|
|
|
'spent on text messages',
|
2022-10-12 20:16:22 +00:00
|
|
|
currency="$",
|
2016-06-28 08:59:08 +01:00
|
|
|
smaller=True
|
|
|
|
|
) }}
|
|
|
|
|
{% else %}
|
|
|
|
|
{{ big_number(sms_allowance_remaining, 'free text messages left', smaller=True) }}
|
|
|
|
|
{% endif %}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2023-07-28 11:03:37 -04:00
|
|
|
<!-- <div class='grid-col-6 pilot-disabled'>
|
2023-03-07 17:15:31 -05:00
|
|
|
<div class="keyline-block">
|
2022-12-01 10:18:12 -05:00
|
|
|
{{ big_number("0", 'email disabled during SMS pilot', smaller=True) }}
|
2019-10-25 13:27:46 +01:00
|
|
|
</div>
|
2023-07-28 11:03:37 -04:00
|
|
|
</div> -->
|
2016-06-28 08:59:08 +01:00
|
|
|
</div>
|