Django - static 파일지정
Web/Django

Django - static 파일지정

뉴비뉴 2019. 8. 5.

정확한 의미와 자세한 사용은 https://docs.djangoproject.com/en/2.2/howto/static-files/

 

Managing static files (e.g. images, JavaScript, CSS) | Django documentation | Django

Django The web framework for perfectionists with deadlines.

docs.djangoproject.com

 

settings.py

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

각 앱들의 아래 static 폴더를 STATIC_URL로 지정해준다.

내가 다른 곳을 STATIC 폴더로 사용하고 싶으면 해당 부분을 변경해주면 된다.

 

border/static/python.png 라는 파일을 넣어줬고, index.html 에서 아래와 같이 호출해주었다.

{% load staticfiles %}

    <img src="{% static "python.png" %}">

화면에 잘 표시되는 것을 확인할 수 있다.

댓글

💲 추천 글