mirror of
https://gitlab.science.ru.nl/technicie/MarietjeDjango.git
synced 2025-12-09 22:12:22 +01:00
14 lines
296 B
Python
14 lines
296 B
Python
from django.contrib import admin
|
|
|
|
from .models import Song
|
|
|
|
|
|
@admin.register(Song)
|
|
class SongAdmin(admin.ModelAdmin):
|
|
list_display = ('artist', 'title', 'user_name')
|
|
search_fields = ('artist', 'title', 'user__name')
|
|
|
|
@staticmethod
|
|
def user_name(obj):
|
|
return obj.user.name
|