Skip to content

Latest commit

 

History

History
12 lines (7 loc) · 277 Bytes

filter_split.rst

File metadata and controls

12 lines (7 loc) · 277 Bytes

django

Splits the filter value into a list of values.

The input value is split by the filter argument, for example:

{{ "foo bar baz"|split:" " }}

Will create the list ["foo", "bar", "baz"].

filter-join