I have a model called Post with a FileField which is an image.
I want to do something like this:
.article-image{
background-image: url("../img/{{ post.postimage }});
}
but obviously it does not work, so I tried to make inline css instead:
<div class="article-image" style="background-image:{% static 'img/{{ post.postimage }}' %}"></div>
but it does not work too.
How can I fix this