--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/6706118e-f64a-4c6d-8bc6-c558d48640f5%40googlegroups.com.
Configure the following setting in your setting.py
STATIC_ROOT = os.path.join(BASE_DIR,"static_files")
STATIC_URL = '/static/'
STATICFILES_DIRS = (
os.path.join(BASE_DIR, "static"),
)
load staticfiles tag to template
{% load staticfiles %}
and then use in src attribute of img HTML tag as you did.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAH-SnCCtH6%3DP6rzezAk1ErTaFnhYyVmBNj82wGN4osw%3DPeEdFA%40mail.gmail.com.