Changes between Version 53 and Version 54 of NewformsAdminBranch


Ignore:
Timestamp:
Jul 8, 2008, 4:06:25 PM (16 years ago)
Author:
anonymous
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • NewformsAdminBranch

    v53 v54  
    251251class ChildInline(admin.TabularInline):
    252252    model = Child
    253     #where extra corresponds to the value previously passed to the model field as num_in_admin
    254253    extra = 3
    255254
     
    258257    inlines = [ChildInline]
    259258}}}
     259See [http://code.djangoproject.com/browser/django/branches/newforms-admin/docs/admin.txt#L506 this ticket] for more details on field options for inline classes
    260260
    261261=== Moved raw_id_admin from the model definition ===
Back to Top