Re: philosophy behind sites and applications in Django

2012-03-26 Thread Reinout van Rees
On 26-03-12 02:21, Jojo wrote: Hi guys, I'm new in Django (I started with the 1.3 and now I'm playing with the 1.4) and I'd like to understand better the phylosophy behind the concepts of sites and applications. Ok a site can contain multiple applications and an application can live in many

Re: philosophy behind sites and applications in Django

2012-03-25 Thread Mario Gudelj
The easiest thing to do is to create each site as a separate project. Define a base template for that project inside templates directory and link your css in that template. Extend that template in all your other templates. Same goes for users. Each project/site will have it's own db and its

philosophy behind sites and applications in Django

2012-03-25 Thread Jojo
Hi guys, I'm new in Django (I started with the 1.3 and now I'm playing with the 1.4) and I'd like to understand better the phylosophy behind the concepts of sites and applications. Ok a site can contain multiple applications and an application can live in many sites, that's simple. Now. For