Files
notifications-admin/app/templates/components/list.html
T

16 lines
373 B
HTML
Raw Normal View History

2016-06-03 14:30:17 +01:00
{% macro list_of_placeholders(placeholders) %}
{{ placeholders | formatted_list(
2016-06-03 14:30:17 +01:00
before_each="<span class='placeholder'>((",
after_each='))</span>',
separator=' '
) }}
{%- endmacro %}
2019-11-20 12:01:26 +00:00
{% macro list_of_code_snippets(variables) %}
{{ variables | formatted_list(
before_each="<code>",
after_each='</code>',
separator=', '
2019-11-20 12:01:26 +00:00
) }}
{%- endmacro %}