Hello, I'm working on a photo gallery web app, and
I've got a question aboute the models:

class Gallery(models.Model):
    title           = models.CharField(max_length=30)
    dir             = models.CharField(max_length=20)


class Photo(models.Model):
    title         = models.CharField(max_length=30)
    photo      = models.ImageField(upload_to='foto')
    gallery    = models.ForeignKey('Gallery')

I'd like to upload the Photos (models.ImageField(upload_to='foto') )
to ``dir / foto``, with 'dir' taken from the class Gallery.
My question is: how can i build the  path "(upload_to='foto')"  with
Gallery.dir ?

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@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