Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have these two models:

class Service(MelosModel):
    performer = models.ForeignKey(Performer)
    event = models.ForeignKey('Event')
    composition = models.ForeignKey(Composition)


class Event(MelosModel):
    event_type = models.ForeignKey('EventType')
    project = models.ForeignKey(Project)
    works = models.ManyToManyField(Work)
    date_of_event = models.DateTimeField()
    location = models.ForeignKey(Address)

Note: A MelosModel is for all intents and purposes the same as models.Model. Also, Composition extends Work.

The trouble is that the list of compositions in the Service admin form needs to be validated against the available Works from its Event. How do you do this?

I read about making a ModelChoiceField from a queryset but that wouldn't help because we don't know what the Event is until the form is submitted. What is the best way to deal with this?

share|improve this question

1 Answer

up vote 0 down vote accepted

If I understood correctly you could write a clean() method on you Service model class to do the custom validation.

share|improve this answer
That definitely works. But I still worry that I'm not doing this correctly. To me, it would be a better database design to let the services set determine which works exist for an event, but that obviously doesn't help with validation. – tjb1982 May 12 '12 at 15:47

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.