| 12345678910111213141516171819202122232425262728 |
- <div>
- <table class="table table-striped">
- <tr>
- <th>Inicio</th>
- <th>Tipo</th>
- <th>Target</th>
- <th>Estado</th>
- <th>Resultado</th>
- </tr>
- <tr ng-repeat="j in working">
- <td>
- {{j.eq}}
- </td>
- <td>
- {{j.type}}
- </td>
- <td>
- {{j.target}}
- </td>
- <td>
- {{j.progress}}
- </td>
- <td>
- {{j.result}}
- </td>
- </tr>
- </table>
- </div>
|