The centerpiece of the Django object-relational mapping scheme is the Model.

learn more… | top users | synonyms

0
votes
1answer
50 views
+50

django obtain related manager with unknown name

Trying to make my app reusable and compatible with custom user models, I've encountered the following issue: Let's say the User model is the following: class Member(AbstractUser): pass # ...