I\'ve got the following model in my Django app:
class Image(models.Model):
image = models.ImageField(
upload_to=\'images/\',
height_fiel
Create a folder "static" in you're django project and add this to you're settings file
STATICFILES_DIRS = (
os.path.join(BASE_DIR, 'static'),
)
If you don't have this line in you're settings file also add it
BASE_DIR = os.path.dirname(os.path.dirname(__file__))
Now in the template you can use
{% static image.image.url %}