Django Admin CSS missing

后端 未结 11 1130
醉梦人生
醉梦人生 2020-12-24 01:23

I\'ve been messing around with the new collectstatic command and have got it working for my normal pages. That is to say, I am able to load my css at this locat

11条回答
  •  生来不讨喜
    2020-12-24 02:06

    In settings.py Don't use tuple for the

    STATICFILES_DIRS =( os.path.join(BASE_DIR, 'static'), )

    you should use list,like this

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

提交回复
热议问题