Changes between Initial Version and Version 1 of Ticket #35654


Ignore:
Timestamp:
Aug 1, 2024, 2:10:47 PM (7 weeks ago)
Author:
Giannis Terzopoulos
Comment:

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 `TaggetItem` model to `core`:
     1Let's consider having 2 apps, `core` and `bookmarks`. Then I add a new `TaggedItem` model to `core`:
    22{{{#!python
    33class TaggedItem(models.Model):
     
    3636The downside of this in my initial use case was that I would have to work around circular import errors, which wasn't easily doable.
    3737
    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.
     38Finally, 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.
Back to Top