[Answered ]-Django select_related works in template rendering?

2👍

The template code for django is executed in the backend and render the data in the template when the page finishes loading, so there is no difference whether you use it in your views.py or in your template.

Leave a comment