If I have the following data structure:
data = [{"nums": [1, 6, 5], "name": "John"},
{"nums": [2], "name": "Bob"},
{"nums": [9, 6], "name": "Jason"}]
And I want it to output to html using ng-repeat as:
|------------|
| 1 | |
|---| |
| 6 | John |
|---| |
| 5 | |
|---|--------|
| 2 | Bob |
|---|--------|
| 5 | |
|---| Jason |
| 2 | |
|---|--------|
How might I do that?