Managing static content on Django site correctly
I have following project structure:
project
|
|-templates
|-static
|
|-js
|-css
newapp
|
|-static
|
|-js
|-css
My settings.py sepcify:
STATIC_URL = '/static/'
STATIC_ROOT = os.path.join(BASE_DIR, "static/")
Now while thi...