1//https://stackoverflow.com/questions/739942/how-to-pass-an-array-in-django-to-a-template-and-use-it-with-javascript
2
3//In Django:
4from django.utils import simplejson
5json_list = simplejson.dumps(YOUR_LIST)
6//AND PASS "json_list" IN CONTEXT
7
8//In JS:
9var YOUR_JS_LIST = {{YOUR_LIST|safe}};