{% load staticfiles %}
<html>
<head>
<title>DJANGO PAGE</title>
</head>
<body>
<H1>Hello this is index.html</H1>
<h1>Hi this contains an image also</h1>
<img src="{% static "images/abc.jpg" %}">
</body>
</html>
Это мой индекс. html. Невозможно получить изображение stati c из моих settings.py
1
2