I want to "Feature" an object on a monthly basis. This object would be from one of three tables: Studio, Film, or Actor, defined below:

class Studio(models.Model):
    name = models.CharField("Studio", max_length=30, unique=True)
    slug = models.SlugField(max_length=100)

    def __str__(self):
            return self.name

    class Meta:
            ordering = ["name"]
             verbose_name = "Studio"

class Film(models.Model):
    studio = models.ForeignKey(Studio, verbose_name="Studio")
    name = models.CharField("Film Name", max_length=30, unique=True)
    slug = models.SlugField(max_length=100)

    def __str__(self):
            return "%s %s" % (self.studio,self.name)

    class Meta:
            ordering = ["name"]
            verbose_name = "Film"

class Actor(models.Model):
    film = models.ForeignKey(Film, verbose_name="Film")
    name = models.CharField("Actor", max_length=30)
    slug = models.SlugField(max_length=100)

    def __str__(self):
            return "%s - %s" % (self.film, name)

    class Meta:
            ordering = ["name"]
            unique_together = (('film','name'),)
            verbose_name = "Actor"

I have a generic foreign key model to hold the Features:

class Feature(models.Model):
    content_type = models.ForeignKey(ContentType)
    user = models.ForeignKey(User, unique = True)
    object_id = models.PositiveIntegerField()
    description = models.TextField("Description", blank=False)
    content_object = generic.GenericForeignKey('content_type', 'object_id')
    created_on = models.DateTimeField(auto_now_add=True)

    class Meta:
        verbose_name = "Feature"

I want to create a form that would:

1) Allow the user to select what type of table the Feature comes from (Studio, Film, or Actor)

2) Provide a conditional drop down such that if the user selects Actor, they first get a drop down for Studio, then for Film (filtered according to the Studio they selected), and finally for Actors (filtered by the Film selected). If they select Film as a table, they get to choose Studio, then Film. Perhaps Actor is greyed out.

Bonus Points) It would be cool if there's an option for "All Studios" under studios that would show all Films in the subsequent drop down. Likewise, "All Films" under Films that would show all Actors in the final dropdown

I have a class previously defined to let me select Film based on Studio:

class DynamicChoiceField(forms.ChoiceField):
    def clean(self, value):
        if value in forms.fields.EMPTY_VALUES:
            return None

        if int(value) < 1:
            #raise forms.ValidationError(self.error_messages['invalid_choice'])
            raise forms.ValidationError('This field is required.')
        else:
            try:
                value = Film.objects.get(pk=value)
            except self.model.DoesNotExist:
                raise ValidationError(self.error_messages['invalid_choice'])
        return value

Using that, I started on a function using some code from a google search result:

class FeatureForm(forms.ModelForm):
    table = forms.ChoiceField()
    studio = forms.ModelChoiceField(Studio.objects)
    film = DynamicChoiceField(choices=(('-1','Select Studio'),), label = "Film")
    actor = DynamicChoiceField(choices=(('-1','Select Film'),), label = "Actor")

    def __init__(self, *args, **kwargs):
        super(FeatureForm, self).__init__(*args, **kwargs)

        #getall the objects that we want the user to be able to choose from

        available_objects = list(Studio, Film, Actor)

        #now create our list of choices for the field
        object_choices = []
        for obj in available_objects:
            type_id = ContentType.objects.get_for_model(obj.__class__).id
            form_value = "type:%s" % (type_id)
            display_text = str(obj)
            object_choices.append([form_value, display_text])
        self.fields['table'].choices = object_choices

    class Meta:
        model = Feature
        exclude = ['user','created_on','object_id','content_object','content_type',]

The above is not even nearly complete (no save function, improper reference to my tables, etc.) because I quickly realized I was out of my league.

Thoughts?

link|improve this question

feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.