I'm currently working on constructing a table using ng-repeat, but I also need to incorporate a toolbar. The table design I have in mind is similar to the one shown in the image below, however, I require additional rows to be inserted under the section labeled "After the civil war."
https://i.sstatic.net/VJwrC.gif
<md-grid-tile><h4>Radiographic Feature Type</h4></md-grid-tile>
<md-grid-tile><h4>You: Mean % Missed Feature</h4></md-grid-tile>
<md-grid-tile><h4>ALL PARTICIPANTS: % Missed Feature</h4></md-grid-tile>
<md-grid-tile>
</md-grid-tile>
<md-grid-tile ng-repeat-start="thisCase in caselist | limitTo : 5">
</md-grid-tile>
<md-grid-tile ng-repeat-end="">
</md-grid-tile>
</md-grid-list>
Any assistance provided would be greatly appreciated. Please bear with me as I am new to coding and still in the learning phase.