Skip to content
Advertisement

Querying One model item from another model

I have a list of Artist (Musicians) and their Albums they created. T

My models looks like the following:

JavaScript

My Views

JavaScript

My HTML is the following:

JavaScript

My shell looks like the following:

JavaScript

I would like to learn how to select One artist “Eminem” and have all albums associated with his model listed on the next page.

So i would select “Jayz”, and be directed to another page with all of his albums “BLUEPRINT, THE BLACK ALBUM, 4:44”

Advertisement

Answer

Use the reverse accessor like this:

JavaScript

And in your template:

JavaScript

Two tips on naming conventions:

  1. Django models should be PascalCase but not have the word ‘Model’ in them, unless this helps the description somehow.
  2. Functions (including views), model fields, and variables should be in snake_case
User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement