On 1/11/06, Mike <[EMAIL PROTECTED]> wrote: > > Hi, > > With models, is it common practice to place all models in a single file > or multiple files? (I have a huge model) > > With views, is it common practice to place all views in a single file? > It seems like django encourages that by removing the view folder, but I > don't see why? Multiple view files allows for multiple programmers > collaborating without running into each other toes.
django does this out of simplicity for new developers. The less files and directories there are to worry about in the beginning, the better. In practice, if you have more than a few views, or views for different models, I would split them up. (I hate extra long files ;) If it makes it easier for source control purposes, I'd do it also. There are no real guidelines. Joseph