I am using pycharm for a django project. I made an app named 'music' and there I created a model named 'Album'.
Inside Views I am using a for loop to get to the details stored in the database like this
all_albums = Album.objects.all()
for album in all_albums:
album.artist
however when I type album.
I don't get autocomplete suggestions for artist
or anything else that I have defined in that class.
How to make pycharm include my own modules in the autocomplete?