Hi,

it's not exactly clear to me how the sites, projects and apps need to be 
structured.

For instance, if you have 2 sites both with a domain name, how would you 
structure
this in Django?
The Django project could be called "mysites" or whatever name.
In the admin site, you would then have 2 sites. So far so good.
But how would you represent the sites?
Do you make an application per site as each site could do something specific.
Then you end up with this structure.
Is this how it is meant to be?
-- mysites (project)
------ site 1 (app)
------ site 2 (app)

The only downside might be if both sites have loads of users, they are all 
displayed in the same list
in the admin interface.
Also, if you couple this with django-registration, it might not be that simple 
to let a user register
for site 1 as well as site 2. I have no practical experience with 
django-registration but it seems
like something i would use in the future.

Or is it better to split the sites over 2 projects, so you have a project per 
site?
-- site 1 (project)
------ site 1 (app)
-- site 2 (project)
------ site 2 (app)


Thanks for any insights,
Regards,
Benedict

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@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.

Reply via email to