Changes between Version 252 and Version 253 of BackwardsIncompatibleChanges


Ignore:
Timestamp:
Aug 26, 2008, 4:40:33 PM (16 years ago)
Author:
Malcolm Tredinnick
Comment:

added note for fixing #8328.

Legend:

Unmodified
Added
Removed
Modified
  • BackwardsIncompatibleChanges

    v252 v253  
    10991099In 2007, Peru changed from departments to regions for their local district names. In [8230], Django's Peruvian localflavor was updated to reflect this change. Previous uses of the `PEDepartmentSelect` class (from `django.contrib.localflavor.pe.forms`) should be changed to use `PERegionSelect`.
    11001100
     1101== New default form widgets in admin ==
     1102
     1103In [8240], to provide better default stylings in the admin interface, the admin class provides its own default form widgets for rendering of model fields. If you were specifying a particular widget for a custom model field that subclasses one of Django's internal fields, you will need to possibly override the `ModelAdmin.formfield_for_dbfield()` method.
     1104
    11011105== File storage refactoring ==
    11021106
Back to Top