Replace iteration count macro with formatters

We prefer formatters now. Removing uses of the aliasing macro lets
remove it entirely.
This commit is contained in:
Chris Hill-Scott
2021-01-06 13:26:06 +00:00
parent 4615c0ea3d
commit 0327ece7ad
3 changed files with 4 additions and 8 deletions

View File

@@ -1,7 +1,3 @@
{% macro message_count_label(count, template_type, suffix='sent') -%}
{{ count|message_count_noun(template_type) }} {{ suffix }}
{%- endmacro %}
{% macro iteration_count(count) -%}
{{ count|iteration_count }}
{% endmacro %}