Re: Associating content with multiple sites

2009-02-11 Thread Praveen
http://pastebin.com/m78d7486f http://docs.djangoproject.com/en/dev/ref/contrib/sites/ i have reffered this link but i have doubt shall i keep Article model's class in both site. On Feb 11, 7:37 pm, Alex Gaynor wrote: > On Wed, Feb 11, 2009 at 2:11 AM, Praveen > wrote: > > > > > > > > > lets as

Re: Associating content with multiple sites

2009-02-11 Thread Alex Gaynor
On Wed, Feb 11, 2009 at 2:11 AM, Praveen wrote: > > lets assume all in lowercase > > expo/expoapp/models.py > > > class events(models.Model): >title = models.CharField(max_length = 50) >summary = models.CharField(max_length = 100) >description = models.CharFiel

Associating content with multiple sites

2009-02-10 Thread Praveen
lets assume all in lowercase expo/expoapp/models.py class events(models.Model): title = models.CharField(max_length = 50) summary = models.CharField(max_length = 100) description = models.CharField(max_length = 300) event_type = models.ForeignKey(event_ty