In my controller, I have data like: $scope.object = data
Now, this data is a dictionary with keys and values from json.
I can access the attribute with object.name in the template. Is there any way that I can iterate over the keys as well and display them in the table like
<tr><td> {{key}} </td> <td> data.key </td>
The data is like this
{
"id": 2,
"project": "wewe2012",
"date": "2013-02-26",
"description": "ewew",
"eet_no": "ewew",
}