On Dec 14, 5:19 am, Marc DM <mar...@phronein.com> wrote:
> If you want to edit them together in the admin then do this for your
> admin class
>
> #------------------------------------
> class BookInline(admin.TabularInline)
>     model = Book
>     extra = 2
>
> class AuthorOptions(admin.ModelAdmin)
>     inlines = [BookInline]
>
> admin.register(Author, AuthorOptions)
>
> #------------------------------------
>
> :)
>

And if you're not using the admin, then you'll want to look into
inline formsets:
http://docs.djangoproject.com/en/dev/topics/forms/modelforms/#inline-formsets
--
DR.
--~--~---------~--~----~------------~-------~--~----~
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