mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-06-27 19:01:14 -04:00
The previous ‘you need to update your API calls’ text isn’t clear enough now that the context of the spreadsheet has been removed.
16 lines
372 B
HTML
16 lines
372 B
HTML
{% macro list_of_placeholders(placeholders) %}
|
|
{{ placeholders | formatted_list(
|
|
before_each="<span class='placeholder'>((",
|
|
after_each='))</span>',
|
|
separator=' '
|
|
) }}
|
|
{%- endmacro %}
|
|
|
|
{% macro list_of_code_snippets(variables) %}
|
|
{{ variables | formatted_list(
|
|
before_each="<code>",
|
|
after_each='</code>',
|
|
separator=' '
|
|
) }}
|
|
{%- endmacro %}
|