If stuffs is a list of strings, just this would work:
{{ stuffs|join(", ") }}
See join filter documentation, as well as filters in general documentation.
p.s.
More reader friendly way
{{ my ~ ', ' ~ string }}
If stuffs is a list of strings, just this would work:
{{ stuffs|join(", ") }}
See join filter documentation, as well as filters in general documentation.
p.s.
More reader friendly way
{{ my ~ ', ' ~ string }}