PyCharm (1.3 and 2 beta) in my Django 1.3 project throws a lot of "unresolved static reference" errors when inspecting my templates for script and style includes.

In an outdated PyCharm doc, I found that a small guide that doesn't work in my situation, because my static files are spread over multiple apps. Adding my static dirs to STATICFILES_DIRS also didn't work.

Dir structure (simplified):
  app1/static/js/file.js
  app1/static/css/file.css
  app2/static/js/otherfile.js
  app2/static/css/otherfile.css
  templates/template.html

­

Template.html:
  <script src="{{ STATIC_URL }}js/file.js"></script>

file.js resolves when I visit the template on localhost, but not in PyCharm.

How do I make static files resolve in PyCharm?

Edit: maybe it's a bug: http://youtrack.jetbrains.com/issue/PY-5568

Edit 2: For me it's now working in in PyCharm 2.0.2 by adding dirs manually in STATICFILES_DIRS.

link|improve this question

75% accept rate
1  
Kinda late, but that should work out of the box.. You dont need to add your app's static to STATICFILES_DIRS and that should work. – Jesus Rodriguez Jan 27 at 16:11
feedback

1 Answer

As you said, its a (verified) bug, and if you don't want to include every directory in STATICFILES_DIRS, its better to manually use /static/ in templates instead of {{STATIC_URL}}.

This way no error would be reported and also you get the auto-completions of those files. However, in cost of a bit of inflexibility in urls, which hardly will cause inconvenience.

link|improve this answer
I cannot use /static/ manually, as the static URL is not uniform across local, live, http and https. – Blaise Apr 11 at 10:02
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.