Re: different admin form if adding a record

2013-06-03 Thread Christian Schulz
Hi Wim, my mistake I have a case of difference and the selection is a filter. So it should be no surprise that values which are not in this selection are NULL using the choice type. Thanks for scrutinize my intention Christian Am Montag, 3. Juni 2013 12:51:38 UTC+2 schrieb Wim Feijen: > > Hi C

Re: different admin form if adding a record

2013-06-03 Thread Wim Feijen
Hi Christian, I recommend defining your own ModelForm and using that in the admin. For an example using a custom form, see: https://docs.djangoproject.com/en/dev/ref/contrib/admin/#django.contrib.admin.ModelAdmin.form But why don't you want a choicefield in the admin then? Regards, Wim On Mon

different admin form if adding a record

2013-06-03 Thread Christian Schulz
Hi , I'm a newbie in django and wondering what is the most easy way to change the "behavoir" if I add a record for a model. class AttributeMapping(models.Model): #In the standard admin view I like a CharField to see filled entries field = models.CharField(max_length=100) #In the add ca