I have a queryset like:
qs = MyModel.objects.filter(name=\'me\').values_list(\'activation_date\')
here activation_date is
You can also convert the date in queryset to string using map function. Example:
map
qs = MyModel.objects.filter(name='me').values_list('activation_date', flat=True) data = map(str, qs)