Fixes admin pages to show trashed documents too (#8068)

This commit is contained in:
Trenton H 2024-11-07 15:04:29 -08:00 committed by GitHub
parent da85b05ea4
commit 177cc9d985
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -51,6 +51,7 @@ class DocumentAdmin(GuardedModelAdmin):
"archive_filename",
"archive_checksum",
"original_filename",
"deleted_at",
)
list_display_links = ("title",)
@ -77,6 +78,12 @@ class DocumentAdmin(GuardedModelAdmin):
created_.short_description = "Created"
def get_queryset(self, request): # pragma: no cover
"""
Include trashed documents
"""
return Document.global_objects.all()
def delete_queryset(self, request, queryset):
from documents import index