Changes between Initial Version and Version 1 of Ticket #35654
- Timestamp:
- Aug 1, 2024, 2:10:47 PM (4 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #35654 – Description
initial v1 1 Let's consider having 2 apps, `core` and `bookmarks`. Then I add a new `Tagge tItem` model to `core`:1 Let's consider having 2 apps, `core` and `bookmarks`. Then I add a new `TaggedItem` model to `core`: 2 2 {{{#!python 3 3 class TaggedItem(models.Model): … … 36 36 The downside of this in my initial use case was that I would have to work around circular import errors, which wasn't easily doable. 37 37 38 Finally, having both models in the same app/models.py doesn't trigger the error either, so it seems to be as if something is missing here.38 Finally, having both models in the same app/models.py and using the ''lazy reference'' GenericRelation doesn't trigger the error either. So it seems to me as if something is missing here.