we have same structure events class in both sites. Both sites use the same events database, and an events is associated with one or more sites It lets the site producers edit all events -- on both sites -- in a single interface (the Django admin). so my doubt is: Is it necessary to write events class in both application and if it is not then where should i keep events class in which app. if it should be in both sites then how may i proceed ahead? If i keep events class in both models.py then i will face this problem No, that would mean for app a and b you will get tables: a_eventtype and b_eventtype.
myproject |exposite |settings.py |urls.py |manage.py |expoapp |views.py |models.py |urls.py |foodiesite |settings.py |urls.py |manage.py |foodiesapp |views.py |models.py |urls.py |eventsapp |views.py |models.py |urls.py settings.py urls.py manage.py exposite/settings.py --------------------- INSTALLED_APPS = ( 'django.contrib.auth', 'django.contrib.admin', 'django.contrib.admindocs', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.sites', 'django.contrib.comments', 'exposite.expoapp', ) SITE_ID = 1 ROOT_URLCONF = 'myproject.urls' foodiesite/settings.py ---------------------- INSTALLED_APPS = ( 'django.contrib.admin', 'django.contrib.auth', 'django.contrib.admindocs', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.sites', 'django.contrib.comments', 'foodiesite.foodapp', 'registration', 'profiles', ) SITE_ID = 2 ROOT_URLCONF = 'myproject.urls' TEMPLATE_DIRS = ( "/home/praveen/DJANGOPRJ/myproject/foodieapp/templates", ) below one is my structure of site. and i try to keep apps outside the sites and kept only(settings,urls) but do not know the further process. exposite/expoapp/models.py and foodiesite/foodieapp/models.py (SAME STRUCTURE OF events CLASS IN BOTH) ------------------------ ------------------------------ 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_type) start_date = models.DateField() end_date = models.DateField() contact_detail = models.CharField(max_length = 100) booking_url = models.URLField(max_length = 50) venue = models.CharField(max_length = 100, blank = True) address = models.CharField(max_length = 100, blank = True) TEMPLATE_DIRS = ( "/home/praveen/DJANGOPRJ/myproject/expoapp/templates", ) so in admin interface i have 3 apps eventsapp, expoapp, and foodapp. when i write in terminal :~/DJANGOPRJ/myproject/exposite$/ python manage.py shell >>from myproject.eventsapp.models import * Traceback (most recent call last): File "<console>", line 1, in ? ImportError: No module named myproject.eventsapp.models because i am inside the exposite. i think we can keep the eventapp on Django python path and may call any where. but i do not know how may i keep.. --~--~---------~--~----~------------~-------~--~----~ 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 django-users+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---