django-project-architect

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 c...

Django: Question about model architecture

Does this facade code look like a good idea, or is there anything inherently flawed about the design? More importantly, is there a problem I will likely run into down the road with this code? Any help is much appreciated. I'm trying to build this so that I can have a Payment class as my facade, which accepts cc numbers, etc. and a PayPa...

Should I split a big Django project into many apps?

Short version: I have a Django project under development & testing (not yet into production) which is slowly getting “not-so-small”, and lately I've been wondering about splitting things up to keep it manageable. Project layout: The project comprises various reusable applications not developed by me, such as avatar, django_evolution, co...