Commit 2fd16232 authored by Simon Charette's avatar Simon Charette Committed by Tim Graham
Browse files

[1.6.x] Fixed #23754 -- Always allowed reference to the primary key in the admin

This change allows dynamically created inlines "Add related" button to work
correcly as long as their associated foreign key is pointing to the primary
key of the related model.

Thanks to amorce for the report, Julien Phalip for the initial patch,
and Collin Anderson for the review.

Backport of f9c4e14a from master
parent c3a40af6
Loading
Loading
Loading
Loading
+4 −5
Original line number Diff line number Diff line
@@ -339,9 +339,9 @@ class BaseModelAdmin(six.with_metaclass(RenameBaseModelAdminMethods)):
        except FieldDoesNotExist:
            return False

        # Check whether this model is the origin of a M2M relationship
        # in which case to_field has to be the pk on this model.
        if opts.many_to_many and field.primary_key:
        # Always allow referencing the primary key since it's already possible
        # to get this information from the change view URL.
        if field.primary_key:
            return True

        # Make sure at least one of the models registered for this site
@@ -352,8 +352,7 @@ class BaseModelAdmin(six.with_metaclass(RenameBaseModelAdminMethods)):
            for inline in admin.inlines:
                registered_models.add(inline.model)

        for related_object in (opts.get_all_related_objects(include_hidden=True) +
                               opts.get_all_related_many_to_many_objects()):
        for related_object in opts.get_all_related_objects(include_hidden=True):
            related_model = related_object.model
            if (any(issubclass(model, related_model) for model in registered_models) and
                    related_object.field.rel.get_related_field() == field):
+8 −1
Original line number Diff line number Diff line
@@ -4,7 +4,14 @@ Django 1.4.17 release notes

*Under development*

Django 1.4.17 ...
Django 1.4.17 fixes a regression in the 1.4.14 security release.

Additionally, Django's vendored version of six, :mod:`django.utils.six`, has
been upgraded to the latest release (1.8.0).

Bugfixes
========

* Fixed a regression with dynamically generated inlines and allowed field
  references in the admin
  (`#23754 <http://code.djangoproject.com/ticket/23754>`_).
+14 −0
Original line number Diff line number Diff line
===========================
Django 1.5.12 release notes
===========================

*Under development*

Django 1.5.12 fixes a regression in the 1.5.9 security release.

Bugfixes
========

* Fixed a regression with dynamically generated inlines and allowed field
  references in the admin
  (`#23754 <http://code.djangoproject.com/ticket/23754>`_).
+7 −1
Original line number Diff line number Diff line
@@ -4,7 +4,13 @@ Django 1.6.9 release notes

*Under development*

Django 1.6.9 ...
Django 1.6.9 fixes a regression in the 1.6.6 security release.

Additionally, Django's vendored version of six, :mod:`django.utils.six`, has
been upgraded to the latest release (1.8.0).

Bugfixes
========

* Fixed a regression with dynamically generated inlines and allowed field
  references in the admin (:ticket:`23754`).
+1 −0
Original line number Diff line number Diff line
@@ -41,6 +41,7 @@ versions of the documentation contain the release notes for any later releases.
.. toctree::
   :maxdepth: 1

   1.5.12
   1.5.11
   1.5.10
   1.5.9
Loading