| <table class="table table-striped"> | |
| <thead> | |
| <tr> | |
| <th>Start</th> | |
| <th>End</th> | |
| <th>Distance</th> | |
| <th ng-repeat="colName in config.columns">{{colName}}</th> | |
| </tr> | |
| <thead> | |
| <tbody> | |
| <tr ng-repeat="log in jobLogs"> | |
| <td>{{log.start}}</td> | |
| <td>{{log.end}}</td> | |
| <td>{{log.distance}}</td> | |
| <td ng-repeat="colName in config.columns>{{log[colName]}}</td> | |
| </tr> | |
| </tbody> | |
| </table> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment