I’m a bit naive as far as Django template processing goes. As far as I understand, template tags are just functions.
So, is there any difference in performance in filtering query sets in template tags
ie. user.profile_set.all.0.followers
versus filtering queries in the same manner via my View?
The template must be parsed, and at each
.it must guess which type of access the next identifier should be. Over the long run, avoiding all this can speed the project up a very tiny bit.