I just want to loop through an existing list and make a comma delimited string out of it. Something like this: my_string = \'stuff, stuff, stuff, stuff\'
my_string = \'stuff, stuff, stuff, stuff\'
If stuffs is a list of strings, just this would work:
stuffs
{{ stuffs|join(", ") }}
Link to join filter documentation, link to filters in general documentation.
join