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

24 lines
668 B
HTML
Raw Normal View History

{% from "components/big-number.html" import big_number %}
<div class='grid-row grid-gap ajax-block-container'>
<div class='grid-col-12'>
<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>
<!-- <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) }}
</div>
</div> -->
</div>