Re: Localization and Forms with Currencyfields / Value

2013-06-16 Thread Christian Schmitt
The Thing is, some Application that dealing with money have thousand separator, and fields without. So it won't work. I've wrote my own Field since, I need to deal with both, but I think this is a feature that should be included in the core of django. Or even something like

Re: Localization and Forms with Currencyfields / Value

2013-06-15 Thread Aymeric Augustin
Hi Christian, Could you clarify why DecimalField doesn't work for your use case? I suspect you're encountering problems related to localization, but I'm not sure. Thanks, -- Aymeric. On 15 juin 2013, at 11:35, Christian Schmitt wrote: > In Django it is nearly

Localization and Forms with Currencyfields / Value

2013-06-15 Thread Christian Schmitt
In Django it is nearly impossible to deal with currency values, intcomma would make values to currency and it will work on Django 1.6a1 with Decimals, but still when I have a ModelForm or Form I can't validate a intcomma(Decimal()) Value. It will always be incorrect. Maybe its time now to let