First of all, the ModelAdmin needs to know about how to handle the generic relations and whether you even need them to appear. You need to subclass "generic.GenericTabularInline" (in the same way you subclassed "admin.ModelAdmin") and specify fields you want to be able to edit on that Trans object (probably only the "name" field if I understood right) and the actual model (here Trans). Then, you'd need to add the 'inlines' attribute to your PollAdmin and add the GenericTabularInline subclass. So your code should look something like :
http://dpaste.com/30763/ --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---