[Django]-Django templates – split string to array

106πŸ‘

βœ…

Django intentionally leaves out many types of templatetags to discourage you from doing too much processing in the template. (Unfortunately, people usually just add these types of templatetags themselves.)

This is a perfect example of something that should be in your model not your template.

class Game(models.Model):
    ...
    def screenshots_as_list(self):
        return self.screenshots.split('\n')

Then, in your template, you just do:

{% for screen in game.screenshots_as_list %}
    {{ screen }}<br>
{% endfor %}

Much more clear and much easier to work with.

πŸ‘€Chris Pratt

16πŸ‘

Functionality already exists with linkebreaksbr:

{{ value|linebreaksbr }}

https://docs.djangoproject.com/en/dev/ref/templates/builtins/?from=olddocs#linebreaksbr

πŸ‘€peterp

8πŸ‘

Hm, I have partly solved this problem. I changed my filter to:

@register.filter(name='split')
def split(value, arg):
    return value.split('\n')

Why it didn’t work with the original code?

πŸ‘€artem

1πŸ‘

I wanted to split a list of words to get a word count, and it turns out there is a filter for that:

{{ value|wordcount }}

https://docs.djangoproject.com/en/dev/ref/templates/builtins/?from=olddocs#wordcount

πŸ‘€ryanjdillon

1πŸ‘

Apart from whether your original solution was the right approach, I guess the original code did not work because the meaning of the \n is not the same in Python code as it is in HTML: In Python code it means the escaped newline character, in HTML it is just the two separate characters \ and n.
So passing as input parameter \n from the HTML template to the Python code is equivalent to splitting on the Python string \\n: a literal \ followed by a n.

Leave a comment