From 06277f21de30fb39698bf78627c24bcfac95fa0d Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Fri, 19 Apr 2024 15:13:07 -0400 Subject: [PATCH] [scrobbles] Clean up inline admin --- vrobbler/apps/scrobbles/admin.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/vrobbler/apps/scrobbles/admin.py b/vrobbler/apps/scrobbles/admin.py index 77d9e7e..387bfd9 100644 --- a/vrobbler/apps/scrobbles/admin.py +++ b/vrobbler/apps/scrobbles/admin.py @@ -26,7 +26,15 @@ class ScrobbleInline(admin.TabularInline): "web_page", "user", ) - exclude = ("scrobble_log",) + exclude = ( + "scrobble_log", + "timezone", + "book_koreader_hash", + "book_page_data", + "book_pages_read", + "videogame_save_data", + "videogame_screenshot", + ) class ImportBaseAdmin(admin.ModelAdmin):