I have a content that I'd like to rate on multiple criteria.
Imagine this kind of model:

class Content(models.Model):
  name = models.CharField(max_length=50)

class Criteria(models.Model):
  name = models.CharField(max_length=50)
  content = models.ForeignKey(Content)

class ContRate(models.Model):
  user = models.ForeignKey(User, help_text="Who rated ?")
  crit = models.ForeignKey(Criteria)
  rate = models.DecimalField()

The user has a page displaying the content.
From this page, he can also rate the content on the criterias set

Rating Criterias

Question are:
Do you suggest to use a Model Formset for this purpose ?
Or should I do a simple Ajax form to post the ratings ?
Any why should I do this ?

link|improve this question

is ContRate.crit a foreign key to Criteria? What is DubCrit? – Stan Dec 15 '11 at 17:53
Sorry yes it's Criteria, I changed it – Pierre de LESPINAY Dec 16 '11 at 6:42
feedback

1 Answer

up vote 1 down vote accepted

I would use a model formset for this kind of problem although you are not going to use my_formset.is_valid() nor my_formset.save() but because it ease the forms construction in the view and the render in the template. No need to worry with the form prefixes etc.

Your Ajax call on the onclick event (fired by a click on a star) should call a view with the ContRate pk (if present) and the rate as parameters.

The view will instanciate a ContRateForm (the same used in your previous modelformset_factory) whith those parameters, use the usual mechanisms of ModelForm validation and database insert/update and finally render a json response.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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