aboutsummaryrefslogtreecommitdiffhomepage
path: root/gm/rebaseline_server/static/new/partials/index-view.html
blob: 72db231d08dcd7330698efa4aa2c9b70f1ad76fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<div class="container-fluid ng-cloak" ng-cloak>
    <div class="row" ng-show="state === c.ST_LOADING">
        <h4>Loading ...</h4>
    </div>

    <div class="row" ng-show="state === c.ST_READY">
        <h4>GM Expectations vs Actuals:</h4>
        <ul>
            <li><a href="#/view?{{ qStr({ resultsToLoad: c.RESULTS_FAILURES }) }}">Failures</a></li>
            <li><a href="#/view?{{ qStr({ resultsToLoad: c.RESULTS_ALL }) }}">All</a></li>
        </ul>

        <h4>Rendered SKPs:</h4>
        <ul>
            <li ng-repeat="oneSKP in allSKPs">
                <a href="#/view?{{ qStr(oneSKP.params) }}">
                    {{oneSKP.title}}
                </a>
            </li>
        </ul>
    </div>
</div>