mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-08-13 10:28:51 -04:00
15 lines
354 B
HTML
15 lines
354 B
HTML
|
|
{% macro message_count_label(count, template_type) -%}
|
||
|
|
{%- if template_type == 'sms' -%}
|
||
|
|
{%- if count == 1 -%}
|
||
|
|
text message
|
||
|
|
{%- else -%}
|
||
|
|
text messages
|
||
|
|
{%- endif -%}
|
||
|
|
{%- elif template_type == 'email' -%}
|
||
|
|
{%- if count == 1 -%}
|
||
|
|
email
|
||
|
|
{%- else -%}
|
||
|
|
emails
|
||
|
|
{%- endif -%}
|
||
|
|
{%- endif %} sent
|
||
|
|
{%- endmacro %}
|