I have a queryset with objects having fields date
and value
.
I need to populate the template with an array [[date_1, value_1],[date_2,value_2],...,[date_n,value_n]]
.
How is this possible when each object has multiple fields?
I have tried
MyModel.objects.values_list('date', 'value')
but date
is printed in datetime format (e.g. datetime.date(2013, 9, 21)
) and value is printed as decimal (e.g. Decimal('72495.0')
). I need it in a flot.js chart.