Re: TypeError in Django Admi with edit_inline

2007-10-11 Thread mrsynock
Finally, I use primary_key instead of Unique. this is not exactly the same but does what I want. And that's work --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send emai

Re: TypeError in Django Admi with edit_inline

2007-10-10 Thread mrsynock
> In fact this particular problem seems to be Gone on the newforms-admin > branch, so that's another alternative for a workaround, if you (mrsynock) > are feeling adventurous enough to switch to a branch. Sadly I'm not very adventurous :-) I'll just remove unique

TypeError in Django Admi with edit_inline

2007-10-09 Thread mrsynock
Hello, sorry for this big post it's more explicit with the code --- Here are my models class Billet2(models.Model): titre= models.CharField(maxlength=200) titre_court = models.SlugField(db_index=True, unique=True, maxlength=200, prepopulate_from=(u'titre',