14 lines
326 B
Python
14 lines
326 B
Python
from django.contrib import admin
|
|
|
|
from scrobbles.models import Scrobble
|
|
|
|
|
|
class ScrobbleAdmin(admin.ModelAdmin):
|
|
date_hierarchy = "timestamp"
|
|
list_display = ("video", "timestamp", "source", "playback_position")
|
|
list_filter = ("video",)
|
|
ordering = ("-timestamp",)
|
|
|
|
|
|
admin.site.register(Scrobble, ScrobbleAdmin)
|