summaryrefslogtreecommitdiffstats
path: root/reporting/pages/app/views/gating.html
blob: 0215c877129bbb42917d5d714a40bc06ae36692d (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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<section class="container-tablesize">
    <div class="row  border-bottom white-bg dashboard-header">
        <div class="row">

            <div class="ibox float-e-margins">
                <div class="ibox-title">
                    <h5>OPNFV Release Gating Reporting </h5>
                </div>

                <div class="ibox-content row">
                    <div class="col-md-2" style="margin-top:5px;margin-right: 5px;">
                        <selectize options="scenarioList" ng-model="selectScenario" config="ScenarioConfig"></selectize>
                    </div>
                    <div class="col-md-2" style="margin-top:5px;margin-right: 5px;">
                        <selectize options="versionList" ng-model="selectVersion" config="VersionConfig"></selectize>
                    </div>

                    <div class="col-md-2" style="margin-top:5px;margin-right: 5px;">
                        <selectize options="installerList" ng-model="selectInstaller" config="InstallerConfig"></selectize>

                    </div>

                    <div class="col-md-2" style="margin-top:5px;margin-right: 5px;">
                        <selectize options="iterationList" ng-model="selectIteration" config="IterationConfig"></selectize>
                    </div>
                </div>

                <div class="table-responsive">
                    <table class="table table-bordered" id="table">
                        <thead class="thead">
                            <tr>
                                <th>Scenario</th>
                                <th>Date</th>
                                <th>ID</th>
                                <th>Version</th>
                                <th>Installer</th>
                                <th>Deployment</th>
                                <th>Functest</th>
                                <th>Yardstick</th>
                            </tr>
                        </thead>
                        <tbody class="tbody" ng-show="selectScenario == 'all' || scenario == selectScenario" ng-repeat="(scenario,value) in scenarios">
                            <tr ng-repeat="record in value">
                                <td ng-if="$index == 0">{{ scenario }}</td>
                                <td ng-if="$index != 0"></td>
                                <td>{{ record.date }}</td>
                                <td>{{ record.id }}</td>
                                <td>{{ record.version }}</td>
                                <td>{{ record.installer }}</td>
                                <td>{{ record.projects.deployment.gating }}</td>
                                <td>{{ record.projects.functest.gating }}</td>
                                <td>{{ record.projects.yardstick.gating }}</td>
                            </tr>
                        </tbody>
                    </table>

                </div>

            </div>
        </div>
    </div>

</section>
<style>
.selectize-input {
    width: 200px !important;
}
</style>