thanks, i made it that, it is working fine now :)

def screenshot_path(instance = None, filename = None):
    filepath = join("products",  "images", instance.product.type,
instance.product.slug, "screenshot_" + str(instance.order) + ".gif")
    if exists(join(MEDIA_ROOT,filepath)):
        remove(join(MEDIA_ROOT, filepath))
    return filepath

class ScreenShot(models.Model):
    product = models.ForeignKey(Product)
    image = models.ImageField(upload_to = screenshot_path)
    order = models.PositiveSmallIntegerField(choices = ((1, 1),(2, 2),
(3, 3), (4, 4)))
    def __unicode__(self):
        return "%s" % (self.image.path
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to