mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-03-17 23:13:57 +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()
|