I am creating a python dictionary and passing it over to javascript.
var students = {{myStudents}}
when generated becomes
var students = [(u'Mark', u'b7'), (u'Phillipe', u'a67'), (u'John', u'a1')]
Now I need to loop over the names (Mark, Philippe, etc...) and populate a dropdown list.
My problem, how can I access the key/value separately. Ultimately I could pass both lists separately, but I want to check if their is another non-bruteforce way.