Changes between Initial Version and Version 1 of Ticket #33258
- Timestamp:
- Nov 2, 2021, 6:34:27 PM (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #33258 – Description
initial v1 1 1 In Django's Admin class, most "lists" are initialized as tuples `()` while two of them (`inlines` and `actions`)are initialized as lists `[]` 2 2 3 ` ``3 ` 4 4 list_display = ('__str__',) 5 5 list_display_links = () … … 12 12 ... 13 13 actions = [] 14 ` ``14 ` 15 15 16 16 This is inconsistent.