Changes between Version 6 and Version 7 of DjangoSpecifications/NfAdmin/FlexibleAppHandling
- Timestamp:
- Jun 18, 2008, 1:04:25 PM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DjangoSpecifications/NfAdmin/FlexibleAppHandling
v6 v7 31 31 32 32 class FooAppAdmin(admin.AppAdmin): 33 name = "Foo" # overrides app().name 33 app = settings.INSTALLED_APPS[0] 34 name = "Foo" # overrides self.app.name 34 35 description = "An application that does foo" 35 36 style = {'classes' : ('collapse',)}