On Jun 1, 9:51 pm, lindec <[EMAIL PROTECTED]> wrote: > Thanks!! I had the same problem adding external CSS and Javascript > files as well. This seems like an absurd problem to have, given that > its obvious that developers would want to add CSS/JS files to their > templates. I wonder why the developers have not addressed this?
Read this now: http://www.djangoproject.com/documentation/static_files/ It's not an absurd problem. Django isn't supposed to serve media files. You can make it do it, in development only, if you like. But there are many very good servers that deal with media files: Apache, Nginx, Lighttpd, etc. Django's philosophy is to let the webservers serve the static content, and concentrate on the dynamic stuff. -- DR. --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

