mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-03 21:29:16 +02:00
10 lines
298 B
Python
10 lines
298 B
Python
from django.contrib import admin
|
|
|
|
from . import models
|
|
|
|
|
|
@admin.register(models.Listening)
|
|
class ListeningAdmin(admin.ModelAdmin):
|
|
list_display = ["track", "creation_date", "user", "session_key"]
|
|
search_fields = ["track__name", "user__username"]
|
|
list_select_related = ["user", "track"]
|