5 ms·
Or simply use Django's builtin mechanism for that instead of poorly reimplementing it: https://docs.djangoproject.com/en/4.1/ref/templates/builtins/#json-script
by Chiron1991 4y ago
Or simply use Django's builtin mechanism for that instead of poorly reimplementing it: https://docs.djangoproject.com/en/4.1/ref/templates/builtins/#json-script https://docs.djangoproject.com/en/4.1/ref/templates/builtins...
- brento 4y agoThank you for pointing this out, I forgot about this template filter. This unfortunately still wouldn't properly all the data types mentioned in my article (e.g. QuerySets).
- traverseda 4y agoCheck out the "values_list" method for flattening a queryset.