(en-US) Humanized Decimal Field

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
""" Stay DRY, import intcomma """
from django.contrib.humanize.templatetags.humanize import intcomma


class USDecimalHumanizedInput(forms.TextInput):
  def __init__(self, initial=None, *args, **kwargs):
    super(USDecimalHumanizedInput, self).__init__(*args, **kwargs)
  
  def render(self, name, value, attrs=None):
    value = intcomma(value)
    return super(USDecimalHumanizedInput, self).render(name, value, attrs)


class USDecimalHumanizedField(forms.DecimalField):
  """
  Use this as a drop-in replacement for forms.DecimalField()
  """
  widget = USDecimalHumanizedInput
  
  def clean(self, value):
    value = value.replace(',','')
    super(USDecimalHumanizedField, self).clean(value)
    return value

Comments

ActionScripted (on July 2, 2008):

I've noticed that when initializing without an explicit initial value, the field defaults to the string "None".

Not sure how to change this, but it'd be great if it would just fall-back to an empty string ("").

#

(Forgotten your password?)

You may use Markdown syntax here, but raw HTML will be removed.