In my html file, how can I output the size of the queryset that I am using (for my debugging purposes)
I\'ve tried
{{ len(some_queryset) }} >
{{ len(some_queryset) }}
Just to highlight @Yuji'Tomita'Tomita comment above as a separate answer:
There is a filter called length to call len() on anything.
length
len()
So you could use:
{{ some_queryset|length }}