summaryrefslogtreecommitdiffstats
path: root/vnfmarket/src/main/webapp/vnfmarket/app/modules/home/serviceDetails/lifeCycle/view.html
blob: 5759ceb0e9ab19ae3ac6b99d2acdf1f01052cf37 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<div class="">

<md-card flex="100" class="nomargin">
        <md-table-container>
            <table md-table>
                <thead md-head md-order="vm.filter.name" md-on-reorder="vm.getTests">
                    <tr md-row>
                        <th md-column class="fontSize"  md-order-by="step">
                        	<md-tooltip md-direction="top">{{'common.tabs.validation.stepTHead' | translate}}</md-tooltip>
                            {{'common.tabs.validation.stepTHead' | translate}}
                        </th>
                        <th md-column class="fontSize"   md-order-by="parameter">
                        	<md-tooltip md-direction="top">{{'common.tabs.validation.ParamTHead' | translate}}</md-tooltip>
                            {{'common.tabs.validation.ParamTHead' | translate}}
                        </th>
                        <th md-column class="fontSize"    md-order-by="result">
                        	<md-tooltip md-direction="top">{{'common.tabs.validation.ResultTHead' | translate}}</md-tooltip>
                            {{'common.tabs.validation.ResultTHead' | translate}}
                        </th>
                        
                    </tr>
                </thead>
                <tbody md-body>
                    <tr md-row md-select="dessert" md-select-id="name" md-auto-select ng-repeat="test in vm.lifeCycleTests | orderBy: vm.filter.name |
                     limitTo: vm.paginationQuery.limit: (vm.paginationQuery.page - 1) * vm.paginationQuery.limit track by $index">
                        <td md-cell>
	                        <md-tooltip md-direction="top">{{test.step}}</md-tooltip>{{test.step}}
                        </td>
                        <td md-cell>
	                        <md-tooltip md-direction="top">{{test.parameter}}</md-tooltip>{{test.parameter}}
                        </td>
                        <td md-cell>
	                        <md-tooltip md-direction="top">{{test.result}}</md-tooltip>{{test.result}}
                        </td>
                        
                    </tr>
                </tbody>
            </table>
        </md-table-container>
        <md-table-pagination class="pagination-class" md-limit="vm.paginationQuery.limit" md-limit-options="vm.pagination" md-page="vm.paginationQuery.page" md-total="{{vm.lifeCycleTests.length}}" md-page-select="vm.paginationOptions.pageSelect" md-boundary-links="vm.paginationOptions.boundaryLink" md-label="{ page : 'Page', RowPerPage:'row per page', of:'of'}"></md-table-pagination>
</md-card>
</div>