Commit 3c4fa78c authored by Migs Atienza's avatar Migs Atienza

Added List Displays to Homepage Admin

parent f1943885
......@@ -6,13 +6,19 @@ from .models import Artist, Album, Song
class ArtistAdmin(admin.ModelAdmin):
model = Artist
list_display = ("artist_name", "birth_name", "monthly_listeners")
class AlbumAdmin(admin.ModelAdmin):
model = Album
list_display = ("album_name", "description", "release_date", "label", "song_count")
class SongAdmin(admin.ModelAdmin):
model = Song
list_display = ("song_title", "song_length", "lyrics", "music_video")
# Register your models here.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment