This is a simple TextInput widget that uses my Currency object.
I placed my Currency object in the Django utils directory because I integrated a set of currency objects into the Admin app ( here ) and it was just easier to have everything within Django.
The rest of the series: Currency Object, Currency Form Field, Currency DB Field, Admin Integration
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | from django.forms import widgets
from django.utils.currency import Currency
from django.utils.encoding import force_unicode
from django.utils.safestring import mark_safe
from util import flatatt
class CurrencyInput(widgets.TextInput):
def render(self, name, value, attrs=None):
if value is None: value = ''
final_attrs = self.build_attrs(attrs, type=self.input_type, name=name)
if value != '':
# Only add the 'value' attribute if a value is non-empty.
try:
value = Currency(value).format()
except:
pass
final_attrs['value'] = force_unicode(value)
return mark_safe(u'<input%s />' % flatatt(final_attrs))
|
More like this
- Template tag - list punctuation for a list of items by shapiromatron 10 months, 2 weeks ago
- JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 10 months, 3 weeks ago
- Serializer factory with Django Rest Framework by julio 1 year, 5 months ago
- Image compression before saving the new model / work with JPG, PNG by Schleidens 1 year, 6 months ago
- Help text hyperlinks by sa2812 1 year, 6 months ago
Comments
Please login first before commenting.