Minor terminology question: I see Django refers to images, CSS and Javascript scripts as "static" files (https://docs.djangoproject.com/en/dev/howto/static-files/). However, a Javascript script is not static, it is dynamic; it executes in the client when the web page is loaded. I suppose the "static" terminology used by Django is in the server perspective, where Javascript scripts and images are equally static and provided as they are to the client ?
2 Answers
Yes - static files mean that their content is static, not that they are not in some way evaluated (images and CSS files are also evaluated - I think you're using the term "static" in a fairly unusual way).
1 Comment
Alan Evangelista
Probably because I come from a non-server/client development background where I am used to split a project simply in code, non-code resources and documentation. Thanks for the feedback.