Changes between Version 9 and Version 10 of DynamicModels


Ignore:
Timestamp:
Sep 23, 2007, 9:39:32 PM (17 years ago)
Author:
anonymous
Comment:

Fixed dictionary syntax

Legend:

Unmodified
Added
Removed
Modified
  • DynamicModels

    v9 v10  
    117117... }
    118118>>> options = {
    119 ...     'ordering' = ['last_name', 'first_name'],
    120 ...     'verbose_name' = 'valued customer',
     119...     'ordering': ['last_name', 'first_name'],
     120...     'verbose_name': 'valued customer',
    121121... }
    122122>>> admin = {} # An empty dictionary is equivalent to "class Admin: pass"
Back to Top