1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

Fixed #27967 -- Fixed KeyError in admin's inline form with inherited non-editable pk.

Thanks Robin Anupol for the initial report and workaround.
This commit is contained in:
Paulo
2017-06-09 20:54:10 -04:00
committed by Tim Graham
parent c68f5d83c0
commit 9dc83c356d
5 changed files with 34 additions and 6 deletions

View File

@@ -26,3 +26,6 @@ Bugfixes
* Fixed model initialization to set the name of class-based model indexes
for models that only inherit ``models.Model`` (:ticket:`28282`).
* Fixed crash in admin's inlines when a model has an inherited non-editable
primary key (:ticket:`27967`).