summaryrefslogtreecommitdiffstats
path: root/testapi/opnfv_testapi/ui/components/projects/project/testCases/testCase/testCase.html
blob: 509f39a089feb005d967c00c29b4da4d714143db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<legend>Test Case</legend>
<div style="padding-right:0px">
    <div class="table-responsive">
        <table class="table"  ng-data="ctrl.data">
            <tbody>
                <tr ng-repeat-start="(index, detail) in ctrl.data_field"  style="padding:9px">
                        <td class="podsTableTd" >{{detail | capitalize}}&nbsp;:</td>
                        <td width="86%" class="podsTableLeftTd">{{ctrl.data[index]}}</td>
                </tr>
                <tr ng-repeat-end=>
                </tr>
            </tbody>
        </table>
    </div>
</div>
<div class="row" style="margin-bottom:24px;"></div>
<div ng-show="ctrl.showError"  class="alert alert-danger col-md-8" role="alert" style="margin-top:0px">
        <span class="glyphicon glyphicon-exclamation-sign" aria-hidden="true"></span>
        <span class="sr-only">Error:</span>
        {{ctrl.error}}
</div>
<div class="row" style="margin-bottom:24px;"></div>