Answers for "my django template doesnt want to load the static file"

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
1

staticfiles

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

image in django

<html>
    <head>
       {% load staticfiles %} <!-- Prepare django to load static files -->
    </head>
    <body>
        <img src={% static "image.jpg" %}>
    </body>
</html>
Posted by: Guest on September-10-2020

Code answers related to "my django template doesnt want to load the static file"

Python Answers by Framework

Browse Popular Code Answers by Language