format_html_join(sep, format_string, args_generator)
[source]
A wrapper of format_html()
, for the common case of a group of arguments that need to be formatted using the same format string, and then joined using sep
. sep
is also passed through conditional_escape()
.
args_generator
should be an iterator that returns the sequence of args
that will be passed to format_html()
. For example:
1 2 3 4 | format_html_join( '\n' , "<li>{} {}</li>" , ((u.first_name, u.last_name) for u in users) ) |
Please login to continue.