Changes between Initial Version and Version 1 of Ticket #32659, comment 9


Ignore:
Timestamp:
Jun 18, 2021, 2:10:00 PM (3 years ago)
Author:
Erik van Widenfelt

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #32659, comment 9

    initial v1  
    1 This had nothing to do with caching or `collectstatic` for me. I traced it to the `admin_site` attribute of `AutocompleteJsonView`.The view tries to get the `model_admin` class for the `remote model` from Django's default admin site. If you registered your remote model in a custom admin site a `KeyError` is raised (line 84). This behavior has changed from 3.1 to 3.2.
     1This had nothing to do with caching or `collectstatic` for me. I traced it to the `admin_site` attribute of `AutocompleteJsonView`.The view tries to get the `model_admin` class for the `remote model` from Django's default admin site. If you registered your remote model in a custom admin site a `KeyError` is raised (line 84). This behavior has changed from 3.1.12 to 3.2.0
Back to Top