You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As the title says, something like selectattr(array_of_objects, "property") similar to Jinja's selectattr (IIRC? unless I'm confusing with another engine).
So that you could:
use statements like {{ join(selectattr(array_of_objects, "property"), ", ") }}
simplify multiple loops on a single property
The text was updated successfully, but these errors were encountered:
As the title says, something like
selectattr(array_of_objects, "property")
similar to Jinja'sselectattr
(IIRC? unless I'm confusing with another engine).So that you could:
{{ join(selectattr(array_of_objects, "property"), ", ") }}
The text was updated successfully, but these errors were encountered: