Answers for "django python enable static css"

4

my django template doesnt want to load the static file

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

STATICFILES_DIRS = ( 
    STATIC_ROOT,        
)
Posted by: Guest on November-21-2020
0

static css in django

{% load static %}
{% load i18n %}
{% load widget_tweaks %}

<!DOCTYPE html>
<html>
<head>
    <style>
        {% include "path/to/custom_styles_1.css" %}
    </style>
    <link rel="stylesheet" href="{% static 'css/custom_styles_2.css' %}">
</head>
<body>
<!-- Your HTML body -->
</body>
</html>
Posted by: Guest on February-18-2020
1

staticfiles

STATICFILES_DIRS = [BASE_DIR / 'static']
Posted by: Guest on October-07-2020
-2

django won't load static css

try removing underscores from the css filename if you have any, this fixed for me
Posted by: Guest on November-08-2020

Python Answers by Framework

Browse Popular Code Answers by Language