Add compliance status string

Add a statement in the results-report page that will make it clear
whether a cloud is DefCore compliant or not.

Change-Id: I1fe70924a9657953f207697accf8438f7d86ab34
This commit is contained in:
Paul Van Eck 2015-07-28 23:51:54 -07:00
parent 40184090c7
commit 74363adf2c
2 changed files with 22 additions and 0 deletions

View File

@ -156,3 +156,17 @@ h1, h2, h3, h4, h5, h6 {
padding: 40px;
}
}
.yes {
background: #1A911E;
color: white;
padding-left: .5em;
padding-right: .5em;
}
.no {
background: #BC0505;
color: white;
padding-left: .5em;
padding-right: .5em;
}

View File

@ -53,6 +53,14 @@
({{nonFlagPassCount}}/{{totalNonFlagCount}})
of the <em>required</em> tests.
</p>
<p>Compliance with <strong>{{version.slice(0, -5)}}</strong>:
<strong>
<span ng-if="nonFlagPassCount === totalNonFlagCount" class="yes">YES</span>
<span ng-if="nonFlagPassCount !== totalNonFlagCount" class="no">NO</span>
</strong>
</p>
<hr>
<h4>Capability Overview</h4>