I'm working on creating a student report list using Angularjs ng-repeat. My main issue is figuring out how to dynamically append numbering like an ordered-list to the generated list in the view. I am aiming for something similar to this:
# | Name of Student | Student ID
_________________________________
1 | Samuel Addo | 346578
2 | Grace Asumani | 965433
3 | Zein Akill | 123455
4 | David Addoteye | 678543
The '#' column should automatically generate when rendering the model in the view through ng-repeat. I honestly don't know where to begin as I'm not sure how to achieve this. Any help or guidance would be greatly appreciated. Thank you.