Re: Create a modular application

2011-10-13 Thread Kurtis Mullins
I tend to split mine up based upon URLs. For example, all User-Authentication stuff I may put into a 'user' app. All misc. things that don't seem to have a proper place might go into a 'core' app. Some times this is especially helpful as you can just include an entire App in your main urls.py and w

Re: Create a modular application

2011-10-12 Thread Javier Guerra Giraldez
On Wed, Oct 12, 2011 at 11:14 AM, Guillaume DE BURE wrote: > Being still quite new to django, I have some very basic questions on this: > * Should each module be         a django app ? Or is it something different ? > * Is there already something existing (a third party app ?) to provide this > ki