Skip to main content

Django static files

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


Html tag
-------------------
{% load static %}

{% static 'link' %}

Comments