mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-03 20:49:23 +02:00
15 lines
280 B
Python
15 lines
280 B
Python
from funkwhale_api.common import admin
|
|
|
|
from . import models
|
|
|
|
|
|
@admin.register(models.Channel)
|
|
class ChannelAdmin(admin.ModelAdmin):
|
|
list_display = [
|
|
"uuid",
|
|
"artist",
|
|
"attributed_to",
|
|
"actor",
|
|
"library",
|
|
"creation_date",
|
|
]
|