#14538 closed (fixed)
STATICFILES_DIRS must be set for dev, docs could be improved
Reported by: | romaniuk | Owned by: | Jannis Leidel |
---|---|---|---|
Component: | Contrib apps | Version: | dev |
Severity: | Keywords: | staticfiles, static | |
Cc: | Triage Stage: | Accepted | |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
The documentation for the STATICFILES_DIRS setting at:
http://docs.djangoproject.com/en/dev/ref/contrib/staticfiles/#std:setting-STATICFILES_DIRS
mentioned that it's required "if you use ... the static file serving view".
But it would be really great if this was mentioned also in the documentation for serving static files in development here:
http://docs.djangoproject.com/en/dev/howto/static-files/#serving-static-files-in-development
By the way, if you don't set STATICFILES_DIRS, instead of getting your static file you'll be served a very simple page that says "Page not found: path/to/staticfile". I spend hours debugging this, not realizing the setting was required. If you'd like me to submit a patch to the documentation, could you give me starting point for how to do this, as I am very new here.
Change History (3)
comment:1 by , 14 years ago
milestone: | → 1.3 |
---|---|
Owner: | changed from | to
Status: | new → assigned |
Triage Stage: | Unreviewed → Accepted |
comment:2 by , 14 years ago
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
(In [14323]) Fixed #14528 and #14538 -- Refined staticfiles documentation. Thanks, gremmie and romaniuk.