I have a list of Artist (Musicians) and their Albums they created. T
My models looks like the following:
JavaScript
x
28
28
1
from django.db import models
2
3
# Create your models here.
4
class ArtistModel(models.Model):
5
Artist_name = models.CharField(max_length=50, null=True, default=False)
6
7
def __str__(self):
8
9
return self.Artist_name
10
11
class AlbumsModel(models.Model):
12
13
Genre = {
14
('Hip-Hop','Hip-Hop'),
15
('Rnb','Rnb'),
16
('Rock n Roll','Rock n Roll'),
17
('House','Housep'),
18
('Gospel','Gospel'),
19
('Classical','Classical'),
20
}
21
22
Album_name = models.CharField(max_length=50, null=True, default=False)
23
Album_by = models.ForeignKey(ArtistModel ,max_length=50, null=True, default=False, on_delete=models.CASCADE)
24
Music_genre = models.CharField(max_length=50, null=True, default=False, choices=Genre)
25
26
def __str__(self):
27
return self.Album_name
28
My Views
JavaScript
1
15
15
1
from django.shortcuts import render
2
from . models import AlbumsModel, ArtistModel
3
4
# Create your views here.
5
def Albums(request):
6
AllAlbums = AlbumsModel.objects.all()
7
return render(request, 'Albums/Home.html',
8
{'AllAlbums':AllAlbums})
9
10
11
def Artist(request):
12
AllArtist = ArtistModel.objects.all()
13
return render(request, 'Albums/Artist.html',
14
{'AllArtist':AllArtist})
15
My HTML is the following:
JavaScript
1
12
12
1
{% extends 'Albums/Layout.html' %}
2
3
{% block content %}
4
<h1>Artist</h1>
5
<br/>
6
{% for artistview in AllArtist %}
7
<a href="{% url 'Artist_album' %}">
8
{{artistview}}<br>
9
</a>
10
{% endfor %}
11
{% endblock %}
12
My shell looks like the following:
JavaScript
1
7
1
In [24]: All_Albums
2
Out[24]: <QuerySet [<AlbumsModel: THE EMINEM SHOW>, <AlbumsModel: THE MARSHELL MATHERS LP>, <AlbumsModel: BLUEPRINT>, <AlbumsModel: THE BLACK ALBUM>, <AlbumsModel: 4:44>, <AlbumsModel: MAGNA CARTA HOLY GRAIL>, <AlbumsModel: JESUS IS KING>, <AlbumsModel: DONDA>, <AlbumsModel: GRADUATION>]>
3
4
In [25]: Artist_all
5
Out[25]: <QuerySet [<ArtistModel: Eminem>, <ArtistModel: Jayz>, <ArtistModel: Kanye West>]>
6
7
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
1
3
1
artist_model = ArtistModel.objects.get(Artist_name="Eminem")
2
eminem_albums = artist_model.albumsmodel_set.all()
3
And in your template:
JavaScript
1
4
1
{% for album in artist_model.albumsmodel_set.all %}
2
{{ album }}
3
{% endfor %}
4
Two tips on naming conventions:
- Django models should be
PascalCase
but not have the word ‘Model’ in them, unless this helps the description somehow. - Functions (including views), model fields, and variables should be in
snake_case