Re: combobox

2011-02-25 Thread Marc DM
many incompatible versions out there. Try using the jQuery one as a starting point and make what you want. Just my $0.02 Marc DM DjangoMuser -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to

Re: Combine model form with a formset

2008-12-13 Thread Marc DM
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) #--