Changes between Version 2 and Version 3 of Ticket #11154, comment 30
- Timestamp:
- Dec 21, 2011, 1:35:03 PM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #11154, comment 30
v2 v3 1 1 I have found a permission on proxy models related bug, the admin back end fails to display the administrative options for proxy models. 2 2 3 I have a proxy model extending the Flatpage model, I unregistered the ModelAdmin for it and registered my custom one. I assigned 'change_myflatpage', and 'edit_myflatpage' (and even 'change_flatepage'/'add_flatpage') to the user hover the django admin fails to have any options for my custom flatpage model; If I make the user a super user the edit options appear.3 I have a proxy model extending the Flatpage model, I unregistered the ModelAdmin for it and registered my custom one. I assigned 'change_myflatpage', and 'edit_myflatpage' (and even 'change_flatepage'/'add_flatpage') to the user. Howeverr the django admin fails to have any options for my custom flatpage model; If I make the user a super user the edit options appear. 4 4 5 5 Attempting to access the url directly (/admin/flatpages_ext/projectflatpage/) throws a 403 error.