-
Notifications
You must be signed in to change notification settings - Fork 154
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Static Files only found if collectstatic has been run #165
Comments
This issue is deeply tied to the way that django treats static files in debug mode with A workaround I have found is this: create a symlink from wherever
Notes:
|
A somewhat better option is to use the |
PDF's can't be created using static assets and django-wkhtmltopdf unless collectstatic has been run, moving the static files into the STATIC_ROOT directory.
This isn't as per django template views in debug mode where static files are served out of their initial directory and makes development more difficult where pdfs depend on css for instance.
The text was updated successfully, but these errors were encountered: