On Tue, 2006-08-08 at 14:16 +0000, Dave wrote:
> How can I create a relationship between two models, using a ForeignKey
> in the second to take advantage of the Admin interface ability to add
> an arbitrary number of them, but then also have the ability to create a
> public view for adding objects based off the first model AND the
> second?
> 
> So:
> 
> class ModelA(models.Model):
>     first_name = models.CharField(...)
>     last_name = models.CharField(...)
> 
> class ModelB(models.Model):
>     model_a = models.ForeignKey(ModelA, edit_inline=models.STACKED,
> num_in_admin=4)
>     field_of_interest = models.CharField(...)
> 
> The above example works great for the Admin interfact, but how can I
> access the ModelB fields via
> django.views.generic.create_update.create_object and
> django.views.generic.create_update.update_object? Is it even possible,
> or will I need to create a custom view?

I'm not entirely sure I understand all your requirements, but this link
might help you with using generic views to create the update form:

http://www.pointy-stick.com/blog/2006/07/03/django-tips-forms-multiple-inline-objects/

It might give you a few clues as to where to poke around to extend
things to suit your exact requirements.

Regards,
Malcolm



--~--~---------~--~----~------------~-------~--~----~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users
-~----------~----~----~----~------~----~------~--~---

Reply via email to