I am trying to parse the following JSON using Python / Django:
[
{
"street": "KEELER",
":id": 1421
}
]
Within my Django templates, I can successfully access the street key like:
{{ obj.street }}
but cannot access the id. I have tried the following (all taken from various SO questions):
{{ obj.id }} , {{ obj.:id }}, {{ obj[':id'] }}
I have seen the couple of other questions in SO addressing a similar issue, but none seem to help.