Re: ModelForm + MultiValueField = form.save() problem

2010-11-26 Thread Dr.Bleedjent
Ohh!Sorry)) Thanks On 26 ноя, 09:03, Florian Apolloner wrote: > Hi, > > Plz post usage questions to django-users. This group is about the > development of Django itself. > > Cheers, Florian -- You received this message because you are subscribed to the Google Groups "Django developers" gro

Re: ModelForm + MultiValueField = form.save() problem

2010-11-25 Thread Florian Apolloner
Hi, Plz post usage questions to django-users. This group is about the development of Django itself. Cheers, Florian -- You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group, send email to django-develop...@googlegroups.com. T

ModelForm + MultiValueField = form.save() problem

2010-11-25 Thread Dr.Bleedjent
Hi! I have a modelForm for some model. Example Article: class Article(models.Model) title = models.CharField(max_length=255) price = models.IntegerField() currency = models.IntegerField() class ArticleForm(forms.ModelForm) price = MyPriceFied(choices = CURRENCY_CHOICES)