1 2 3 4 5 6 7 8 9 | class DateTimeObjectValue(ObjectValue):
format = '%m/%d/%Y %H:%M'
def get_object_value(self, instance=None):
value = super(DateTimeObjectValue, self).get_object_value(instance)
if not value:
return ''
return value.strftime(self.format)
|
More like this
- Widget for Money values on Geraldo Reports by marinho 3 years, 1 month ago
- TodayDateTimeField by leotr 4 years, 1 month ago
- db_dump.py - for dumpping and loading data from database by limodou 5 years, 3 months ago
- CSV to JSON Fixture by briangershon 2 years, 9 months ago
- Javascript Chain Select Widget by ogo 3 years, 11 months ago
Comments