Answers for "django add static page"

1

django cannot update static css

<link rel='stylesheet' type='text/css' href="{% static 'css/yourname.css' %}?20181209">
Posted by: Guest on June-18-2020
5

django static files / templates

STATICFILES_DIRS = [
    os.path.join(BASE_DIR, "static"),
    '/var/www/static/',
]
Posted by: Guest on December-10-2019

Browse Popular Code Answers by Language