Changes between Initial Version and Version 1 of Ticket #33258


Ignore:
Timestamp:
Nov 2, 2021, 6:34:27 PM (3 years ago)
Author:
Martin Massera
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #33258 – Description

    initial v1  
    11In Django's Admin class, most "lists" are initialized as tuples `()` while two of them (`inlines` and `actions`)are initialized as lists `[]`
    22
    3 ```
     3`
    44list_display = ('__str__',)
    55list_display_links = ()
     
    1212...
    1313actions = []
    14 ```
     14`
    1515
    1616This is inconsistent.
Back to Top