Re: number input format

2012-02-07 Thread akaariai
On Feb 7, 9:48 pm, Vittorino Parenti wrote: > I know but doesn't work. maybe it's my problem. In input form I see > '.'. > Thanks, > Vittorino. If I remember correctly, you must also have localize=True for your form fields. Maybe with correct settings.py this happens automatically. As said, I don

Re: number input format

2012-02-07 Thread Vittorino Parenti
I know but doesn't work. maybe it's my problem. In input form I see '.'. Thanks, Vittorino. On 7 Feb, 12:01, Denis Darii wrote: > from the django's global_settings: > > # Decimal separator symbol > DECIMAL_SEPARATOR = '.' > > # Boolean that sets whether to add thousand separator when formatting >

Re: number input format

2012-02-07 Thread Denis Darii
from the django's global_settings: # Decimal separator symbol DECIMAL_SEPARATOR = '.' # Boolean that sets whether to add thousand separator when formatting numbers USE_THOUSAND_SEPARATOR = False # Number of digits that will be together, when spliting them by # THOUSAND_SEPARATOR. 0 means no grou