So I already have my site up and running in PHP/mySQL, but I want to
move to Django (and learn it in the process!)
The way I do it now is have a main table of posts, and the table of
posts has a column called "site". If the user accesses
myproject.com/
mySite, it loads the posts from the database for everything with the
condition site=="mySite"
So I do it the same way in Django? Use the same logic, with Django's
sites framework?
That makes my life easy since the application logic is already done!
How do I handle the subdomain, though?
Thanks!