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

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 ?
ContRate.crita foreign key toCriteria? What isDubCrit? – Stan Dec 15 '11 at 17:53Criteria, I changed it – Pierre de LESPINAY Dec 16 '11 at 6:42