Django Project structure, recommended structure to share an extended auth “User” model across apps?
问题 I'm wondering what the common project/application structure is when the user model extended/sub-classed and this Resulting User model is shared and used across multiple apps. I'd like to reference the same user model in multiple apps. I haven't built the login interface yet, so I'm not sure how it should fit together. The following comes to mind: project.loginapp.app1 project.loginapp.app2 Is there a common pattern for this situation? Would login best be handled by a 'login app'? Similar to