Take a look here

http://dpaste.com/73953/

or following

# in models.py

class Seed(models.Model):
    name = models.CharField(max_length=128)

    UPLOAD_ROOT = 'uploads'
    files = models.FileField(upload_to=UPLOAD_ROOT, blank=True,
null=True)
    source = models.CharField(max_length=256, blank=True, null=True)

    def save(self, force_insert=False, force_update=False):
        # I want to change self.files here
        # how to do it ?





Thanks for reply.
--~--~---------~--~----~------------~-------~--~----~
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