X
X
xxx2017-05-03 10:35:15
Django
xxx, 2017-05-03 10:35:15

css not included (staticfiles, staticroot)?

settings.py

STATIC_URL = '/static/'
STATIC_ROOT = os.path.join(os.path.dirname(BASE_DIR), "static_cdn")

STATICFILES_DIRS = [
    os.path.join(BASE_DIR, "static"),
]

MEDIA_URL = "/media/"
MEDIA_ROOT = os.path.join(os.path.dirname(BASE_DIR), "media_cdn")

Structure
Django-blog/
├── media_cdn
│   ├── 11
│   ├── 13
│   ├── 16
│   └── None
├── mysite
│   ├── blog
│   │   ├── migrations
│   │   └── templates
│   ├── comments
│   │   └── migrations
│   ├── mysite
│   └── static
│       └── css
├── static_cdn
│   ├── admin
│   │   ├── css
│   │   ├── fonts
│   │   ├── img
│   │   │   └── gis
│   │   └── js
│   │       ├── admin
│   │       └── vendor
│   │           ├── jquery
│   │           └── xregexp
│   ├── css
│   ├── pagedown
│   │   ├── demo
│   │   │   ├── browser
│   │   │   └── node
│   │   └── local
│   └── pagedown-extra
│       └── pagedown

Answer the question

In order to leave comments, you need to log in

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question