I like this explanation very much, thank You. I didn't know, that STATICFILES_DIRS is the source for the DEV-server serving static files. That is a big help. Now, as a consequence, in my project I've renamed the empty static folder (where the collects go into) to "static_collected", that means: STATIC_ROOT = os.path.join(SITE_ROOT, '*static_collected*') Than its more clear to me and I don't mix it up again ;-)
On Monday, April 23, 2012 1:38:38 PM UTC+2, Philip wrote: > > There is a slight difference: > > - STATIC_ROOT is where you would like the files to be collected to > when you run "manage.py collectstatic" and should be empty to begin with. > - STATICFILES_DIRS is where the actual files are located and they will > be automagically servered under the development server. > - You can also create a folder called "static" in any app and put > files in there. > > Regards > Phil > -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/django-users?hl=en. For more options, visit https://groups.google.com/groups/opt_out.

