The only way to describe  what I am trying to accomplish is through an
example. Here are my models

class B(models.Model):
    credits = models.FloatField(,null=True)

class A(models.Model):
    b = models.OneToOneField(B)
    description = models.TextField()


I want to get a formset of A forms for each item in B.objects.all().
One  requirement is that I only want it to save if they fill in a
description.
The other requirement is that in the form I don't want the user to be
able to change the value of b.

This is the reverse of an inline formset.



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