1 2 3 4 5 6 7 8 9 | import django.newforms as forms
import datetime
class DateTextInput(forms.TextInput):
def render(self, name, value, attrs=None):
if (type(value) == datetime.date):
value = value.strftime("%d.%m.%Y")
return super(DateTextInput, self).render(name, value, attrs)
|
More like this
- Custom DateField To Handle Credit Card Exp Date. Format: MM/YY by pjs 3 years, 10 months ago
- RangeField and RangeWidget by marinho 3 years, 7 months ago
- Drop down Datefield by lurker 4 years, 8 months ago
- Use JQuery Calendar in ModelForm by Induane 1 year, 10 months ago
- SelectTimeWidget by bradmontgomery 3 years, 6 months ago
Comments
I've created a similar date widget. One possible enhancement would be to automatically size it in render if not otherwise specified:
#