fix(join): Dont force strings

This commit is contained in:
Kyle Fuller
2016-12-08 15:56:29 +00:00
parent 2331b11a52
commit 8f6b403aa9
3 changed files with 28 additions and 11 deletions

View File

@@ -279,10 +279,10 @@ value of the variable. For example:
``join``
~~~~~~~~
Join an array with a string.
Join an array of items.
.. code-block:: html+django
{{ value|join:", " }}
.. note:: The value MUST be an array of Strngs and the separator must be a string.
.. note:: The value MUST be an array.