30 okt 2008 kl. 19.23 skrev Wayne M:

<snip>

> exactly this and it makes fixing anything insanely difficult.
>
> Any suggestions to point me in the right direction would be
> appreciated... like I said I'm not sure if Django fits my needs in
> this case.

I think Django sounds ideal in your situation.

* A django "app" is generally something that is reusable. A set of  
views, models, forms that do one function, and do it well. Read more  
about this here: 
http://stackoverflow.com/questions/64237/when-to-create-a-new-app-with-startapp-in-django

* To use the same set of objects (products) but a subset for each  
different site, you can use the built-in sites framework. Basically  
each product will have a ManyToMany-relation to a set of sites  
(foo.com, bar.com) that tags which site(s) it belongs to. See 
http://docs.djangoproject.com/en/dev/ref/contrib/sites/?from=olddocs 
.

Finally, hopefully you've gone through the tutorial? There's some  
great docs over here that help you wrap your head around django and  
the usual workflow: http://docs.djangoproject.com/en/dev/

Hope this helps and good luck!
/Håkan
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to