Re: Sites module, URLs and templates

2009-10-07 Thread Joseph Wakeling
On Oct 4, 2:39 pm, Kristaps Kūlis wrote: > Hi! >  You can make settings for each site easily > first_settings.py > from settings import * > SITE_ID = 1 > TEMPLATE_DIRECTORIES = ( [ ] ) > [ other settings, which needs to be overrided ] > > you can also override urls,

Re: Sites module, URLs and templates

2009-10-04 Thread Kristaps Kūlis
Hi! You can make settings for each site easily first_settings.py from settings import * SITE_ID = 1 TEMPLATE_DIRECTORIES = ( [ ] ) [ other settings, which needs to be overrided ] you can also override urls, etc with revelant settings. if you want to use manage.py, you will need to use copy

Sites module, URLs and templates

2009-10-02 Thread Joseph Wakeling
Hello all, I'm making some first steps with Django having worked my way through the tutorial. I'm finding myself somewhat confused by the sites module. I would like to run two or three different sites. It's trivial to 'create' them using the admin interface, and it's clear how different