I know that there is plenty of questions like that, I read them all and tried everything, however nothing solved my problem.
I\'m writing something like blog in Django
It appears that you need to refer to MEDIA instead of STATIC in this case.
Take a look at your MEDIA_ROOT
and MEDIA_URL
in settings to ensure they're pointed to the right place.
Then, in your template, you can get the URL for the object via the attribute:
<img src="{{ comment.author.picture.url }}" width="70px" height="70px">
More on MEDIA in the docs: https://docs.djangoproject.com/en/1.9/ref/settings/#std:setting-MEDIA_ROOT
Try changing MEDIA_URL to '/static/users/'