Skip to content
Advertisement

Django: Problem with Understanding Objects in For Loop

I am a beginner in Django. I am building a Django app, named PhoneReview. It will store reviews related to the latest mobile phone. It will also display phone brands, along with the associated phone models. I have managed to do some protion of the app. Right now, I am a bit confused with a line of code.

I have a code like this in one of my template files:

JavaScript

I don’t understand this portion:

JavaScript

What does this line mean?

Here are the codes in models.py:

JavaScript

Here are the codes in views.py:

JavaScript

Here are the codes in urls.py:

JavaScript

I am a bit confused by this line: <ul>{% for review_item in game.review_set.all %}. Would you please help me to clarify?

Advertisement

Answer

Look at the models; there is a Game class. Apparently you receive an instance of that class in your template under the name game.

The Game class is referenced as a foreign key by Review class. This, due to the way Django ORM works, gives Game class a reverse link .review_set; it contains all review objects that refer to the particular game. Hence game.review_set.

That .review_set attribute is not a list but a DB result set. You can filter it, sort it, etc, but in your case you just fetch all the records from it. Hence game.review_set.all.

Please take some time to read an intro to how Django works, a number of things there cannot be derived from mere common sense.

User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement