Removed typo in located in album model

parent 3b74dcaf
...@@ -14,7 +14,7 @@ class ArtistAdmin(admin.ModelAdmin): ...@@ -14,7 +14,7 @@ class ArtistAdmin(admin.ModelAdmin):
class AlbumAdmin(admin.ModelAdmin): class AlbumAdmin(admin.ModelAdmin):
model = Album model = Album
list_display = ('album_name', 'description', 'released_date', 'label', 'song_count',) list_display = ('album_name', 'description', 'release_date', 'label', 'song_count',)
search_fields = ('album_name', 'description', 'label',) search_fields = ('album_name', 'description', 'label',)
......
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