Add results and test report page

This is the groundwork for the community results listing page
and the test run report page. The report page is fairly basic, primarily
showing how results stack up against defcore capabilities. Design is subject
to change, but this gets the ball rolling. A config.json.sample was also added.
The UI now expects a config.json in the root which will contain the
Refstack API URL.

Change-Id: Id7a376d0bccda5cbb5daf05e52a2c174ad40b497
This commit is contained in:
Paul Van Eck
2015-04-27 02:40:47 -07:00
parent 8f972ce693
commit c094c27eff
14 changed files with 576 additions and 11 deletions

View File

@@ -49,7 +49,8 @@
<a ng-click="hideTests = !hideTests">Tests ({{capability.tests.length}})</a>
<ul collapse="hideTests">
<li ng-repeat="test in capability.tests">
<span ng-class="{'flagged': capability.flagged.indexOf(test) > -1}"> {{test}}</span>
<span ng-class="{'glyphicon glyphicon-flag text-warning': capability.flagged.indexOf(test) > -1}"></span>
{{test}}
</li>
</ul>
</li>