mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-01-16 22:16:40 +01:00
8 lines
251 B
Python
8 lines
251 B
Python
from django.contrib import admin
|
|
|
|
|
|
class SharedObjectModelAdmin(admin.ModelAdmin):
|
|
def get_queryset(self, request):
|
|
# Use the all_objects manager to show all transactions, including deleted ones
|
|
return self.model.all_objects.all()
|