mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-04 10:49:15 +02:00
Blacked the code
This commit is contained in:
parent
b6fc0051fa
commit
62ca3bd736
279 changed files with 8861 additions and 9527 deletions
|
@ -5,11 +5,7 @@ from . import models
|
|||
|
||||
@admin.register(models.ImportRequest)
|
||||
class ImportRequestAdmin(admin.ModelAdmin):
|
||||
list_display = ['artist_name', 'user', 'status', 'creation_date']
|
||||
list_select_related = [
|
||||
'user'
|
||||
]
|
||||
list_filter = [
|
||||
'status',
|
||||
]
|
||||
search_fields = ['artist_name', 'comment', 'albums']
|
||||
list_display = ["artist_name", "user", "status", "creation_date"]
|
||||
list_select_related = ["user"]
|
||||
list_filter = ["status"]
|
||||
search_fields = ["artist_name", "comment", "albums"]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue