django ImageField link doesn't show in html template
问题 I can redirect to uploaded image through admin-panel but I can't load it on page. In HTML source code it looks like this: <img src="" height = "200" with = "200" /> So here's my code: models.py: class Profile(models.Model): user = models.ForeignKey(User) avatar = models.ImageField(upload_to='images/users/', verbose_name='Аватар', default = 'images/users/ava.gif/') urls.py: from django.conf.urls import url, include from django.contrib import admin from django.conf import settings from django