1
|
<table class="table table-striped" ng-class="{'table-mask': jobsTable.working}">
|
2
|
<thead>
|
3
|
<tr bst-table-head row-select>
|
4
|
<th bst-table-column sortable><span translate>Name</span></th>
|
5
|
</tr>
|
6
|
</thead>
|
7
|
|
8
|
<tbody>
|
9
|
<tr bst-table-row
|
10
|
ng-repeat="job in jobsTable.rows"
|
11
|
row-select="job"
|
12
|
active-row="stateIncludes('jobs.details', {jobId: job.id})">
|
13
|
<td bst-table-cell>
|
14
|
<a ui-sref="jobs.details.info({jobId: job.id})">
|
15
|
{{ job.name }}
|
16
|
</a>
|
17
|
</td>
|
18
|
</tr>
|
19
|
</tbody>
|
20
|
</table>
|