summaryrefslogtreecommitdiffstats
path: root/testapi/opnfv_testapi/ui/components/results/result/result.html
blob: 041f244c4167be5254b8e1fa4a457a9db68a4539 (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
<legend>Result</legend>
<div style="padding-right:0px">
    <div class="table-responsive">
        <table class="table"  ng-data="ctrl.data.pods">
            <tbody>
                <tr ng-repeat-start="(index, detail) in ctrl.data_field"  style="padding:9px">
                    <td class="podsTableTd">{{detail | capitalize}}&nbsp;:</td>
                    <td width="90%" class="podsTableLeftTd">{{ctrl.data[index]}}</td>
                </tr>
                <tr ng-repeat-end=>
                </tr>
                <tr style="padding:9px">
                    <td class="podsTableTd">Details&nbsp;:</td>
                    <td width="90%" class="podsTableLeftTd">
                        <json-tree object="ctrl.json.object" root-name="object" start-expanded="true"></json-tree>
                    </td>
                </tr>
            </tbody>
        </table>
    </div>
</div>
<div class="col-md-12">
        <div ng-show="ctrl.showError" class="col-md-12 alert alert-danger" role="alert">
            <span class="pull-right">&nbsp;{{ctrl.error}}</span>
            <span class="glyphicon glyphicon-exclamation-sign pull-right" aria-hidden="true" >Error:</span>
        </div>
        <div ng-show="ctrl.showSuccess" class="col-md-12 alert alert-success" role="alert">
            <span class="pull-right">&nbsp;{{ctrl.success}}</span>
            <span class="glyphicon glyphicon-ok pull-right" aria-hidden="true"></span>
        </div>
    </div>