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'>
|
2023-10-31 14:22:00 -04:00
|
|
|
|
2023-11-01 10:38:50 -04:00
|
|
|
<table class="usa-table usa-table--borderless margin-top-1 margin-bottom-5">
|
2023-10-31 14:22:00 -04:00
|
|
|
<caption class="usa-sr-only">
|
|
|
|
|
Daily
|
|
|
|
|
</caption>
|
|
|
|
|
<thead>
|
|
|
|
|
<tr>
|
|
|
|
|
<th scope="col">Usage</th>
|
|
|
|
|
<th scope="col">Remaining</th>
|
|
|
|
|
</tr>
|
|
|
|
|
</thead>
|
|
|
|
|
<tbody>
|
|
|
|
|
<tr>
|
|
|
|
|
<td>{{ big_number(40000 - sms_allowance_remaining, smaller=True) }}</td>
|
|
|
|
|
<td>
|
|
|
|
|
{% if sms_cost %}
|
|
|
|
|
{{ big_number(
|
|
|
|
|
sms_cost,
|
|
|
|
|
'spent on text messages',
|
|
|
|
|
currency="$",
|
|
|
|
|
smaller=True
|
|
|
|
|
) }}
|
|
|
|
|
{% else %}
|
|
|
|
|
{{ big_number(sms_allowance_remaining, smaller=True) }}
|
|
|
|
|
{% endif %}
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
</tbody>
|
|
|
|
|
</table>
|
2016-06-28 08:59:08 +01:00
|
|
|
</div>
|
|
|
|
|
</div>
|