Changes between Initial Version and Version 1 of Ticket #35104
- Timestamp:
- Jan 11, 2024, 10:01:41 AM (10 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #35104
- Property Resolution → wontfix
- Property Status new → closed
-
Ticket #35104 – Description
initial v1 7 7 8 8 E.g: 9 9 {{{#!python 10 10 class Model(models.Model) 11 11 name = ... … … 15 15 class MyModelAdmin(admin.ModelAdmin): 16 16 list_display = ['id', 'name'] 17 18 when accessing /admin/models/ this would result into a Model.objects.all().only(*MyModelAdmin.list_display)17 }}} 18 when accessing /admin/models/ this would result into a `Model.objects.all().only(*MyModelAdmin.list_display)`.