Fixed minor errors in the admin display

parent 174c8be7
...@@ -21,7 +21,7 @@ class AlbumAdmin(admin.ModelAdmin): ...@@ -21,7 +21,7 @@ class AlbumAdmin(admin.ModelAdmin):
class SongAdmin(admin.ModelAdmin): class SongAdmin(admin.ModelAdmin):
model = Song model = Song
list_display = ('song_title', 'lyrics',) list_display = ('song_title', 'song_length', 'lyrics', 'music_video')
search_fields = ('song_title', 'lyrics',) search_fields = ('song_title', 'lyrics',)
list_filter = ('song_title',) list_filter = ('song_title',)
......
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