In the the html file I need to iterate though a list of objects passed from views.py to the hmtl by render ( Product_list = Product.objects.all() ) from the object 3 to 8, how this can be done?
{% for i in Product_list %} {% endfor %}
Thanks for the reply.
Before this post I did try it But it did not work. I tried again and this time it worked.
I wonder if there is a way to do it in the html by a custom template tags and filters?