Re: images umpload prob

2014-07-29 Thread Mario Gudelj
Use the url it gives you inside src attribute inside img tag. On 30/07/2014 1:19 pm, "ngangsia akumbo" wrote: > i have the following > > MODEL > > from django.db import models > > class Timer(models.Model): > title = models.CharField(max_length=100) > slug = models.SlugField(unique=True)

images umpload prob

2014-07-29 Thread ngangsia akumbo
i have the following MODEL from django.db import models class Timer(models.Model): title = models.CharField(max_length=100) slug = models.SlugField(unique=True) image2 = models.ImageField(upload_to='image2/') last_seen = models.IntegerField() def __unicode__(self): r