Commit 36affcc6 authored by Julia Anishka's avatar Julia Anishka

added album admin

parent a911d87c
...@@ -6,4 +6,10 @@ class ArtistAdmin(admin.ModelAdmin): ...@@ -6,4 +6,10 @@ class ArtistAdmin(admin.ModelAdmin):
model = Artist model = Artist
list_display = ("artist_name", "birth_name", "monthly_listeners") list_display = ("artist_name", "birth_name", "monthly_listeners")
search_fields = ["artist_name", "birth_name"] search_fields = ["artist_name", "birth_name"]
list_filter = ("artist_name", "birth_name",) list_filter = ("artist_name", "birth_name",)
\ No newline at end of file
class AlbumAdmin(admin.ModelAdmin):
model = Album
list_display = ("album_name", "description", "release_date", "label", "song_count")
search_fields = ["album_name", "description", "label"]
list_filter = ("album_name",)
\ No newline at end of file
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