mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-05 08:19:24 +02:00
Fix #115: broken import request admin
This commit is contained in:
parent
0f06c39854
commit
99a91c1e74
2 changed files with 2 additions and 2 deletions
|
@ -7,8 +7,7 @@ from . import models
|
||||||
class ImportRequestAdmin(admin.ModelAdmin):
|
class ImportRequestAdmin(admin.ModelAdmin):
|
||||||
list_display = ['artist_name', 'user', 'status', 'creation_date']
|
list_display = ['artist_name', 'user', 'status', 'creation_date']
|
||||||
list_select_related = [
|
list_select_related = [
|
||||||
'user',
|
'user'
|
||||||
'track'
|
|
||||||
]
|
]
|
||||||
list_filter = [
|
list_filter = [
|
||||||
'status',
|
'status',
|
||||||
|
|
1
changes/changelog.d/115.bugfix
Normal file
1
changes/changelog.d/115.bugfix
Normal file
|
@ -0,0 +1 @@
|
||||||
|
Fixed broken import request admin (#115)
|
Loading…
Add table
Add a link
Reference in a new issue