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
- Stuff by NixonDash 1 month ago
- Add custom fields to the built-in Group model by jmoppel 3 months, 1 week ago
- Month / Year SelectDateWidget based on django SelectDateWidget by pierreben 6 months, 3 weeks ago
- Python Django CRUD Example Tutorial by tuts_station 7 months, 1 week ago
- Browser-native date input field by kytta 8 months, 3 weeks ago
Comments
Please login first before commenting.