Hi!

I use the SVN release and have a newbie problem in the admin area:

I try to display fields for my DemoThing class/model, which I didn't
model
with a OneToOneField, but followed suggestions of a ForeignKey-
approach.

What do I have to change or add so that not only my "MainThing"
gets displayed and editable in the admin area, but also, inline, my
"DemoThing" fields?

------

class MainThing(models.Model):
   titel1 = models.CharField(max_length=100)
   titel2 = models.CharField(max_length=100)
   titel3 = models.CharField(max_length=100)

class DemoThing(models.Model):
   titel1 = models.ForeignKey(MainThing, edit_inline=models.STACKED,
num_in_admin=1, max_num_in_admin=1, unique=True,
num_extra_on_change=0)
   fisch1 = models.CharField(max_length=200, core=True)
   fisch2 = models.CharField(max_length=200, core=True)

class DemoThingInline(admin.StackedInline):
   model = DemoThing
   extra = 1

class MainThingAdmin(admin.ModelAdmin):
   inlines = [DemoThingInline]

admin.site.register(MainThing, MainThingAdmin)

------

Thanks for any hints!

Peter.

--~--~---------~--~----~------------~-------~--~----~
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?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to