On Mon, Jan 10, 2011 at 10:56 AM, evstevemd <[email protected]> wrote: > In PHP I just put my project as subdirectory of /var/www/ > and then access them via http://localhost/ > How do I do with Django?
Django is not a page-based template system like PHP. it's a long-running application that answers web requests. the difference means a much bigger separation between code and presentation than in PHP, and implies a totally different deployment architecture. if you do the tutorials first, it will make all clear. -- Javier -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected]. 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.

