Re: Multiple sites, single application in Django

2009-04-13 Thread Daniel C
Russell, I am working through something similar and I think that the basic structure would be to have project folders for each site plus a folder for your shared applications (whose models use the 'Site' object and 'CurrentSiteManager'. Something like this: /home/django/sharedapps/ /home/django/sh

Issue with admin interface when model contains ForeignKey and ManyToManyField relations

2009-09-17 Thread Daniel C. Silverstein (cubes)
Howdy, I'm running into some odd behavior in the admin interface when my model contains both a ForeignKey and a ManyToManyField relation. I suspect the issue may be caused by the fact that my ForeignKey and ManyToManyField both reference the same model, which may very well be an error on my part