Simple question. I have a list in my template and want to output the length of the list. Do I have to calculate this in my view and hand it over via my context?
Just a little update in case someone ends up here. As pointed in the comments, if you have a QuerySet, now it's possible to get the length with:
{{ your_list.count }}
Hope it helps!