blob: 465646af329ccf9a32429e934bf3f07cfff573aa [file] [log] [blame]
<html>
<body>
<h1>Validation report</h1>
<ul>
[%var color = ""; var label="";%]
[%for (item in trace){%]
[%if (item.result) {
color="green";
label="passed";
}
else {
color="red";
label="failed";
}%]
<li>
<span style="color:[%=color%]">
Constraint [%=item.constraint.name + " " + label%] for object [%=item.instance%]
</span>
[%}%]
</ul>
</body>
</html>