blob: 5d576ad937116458e42ddfb044cd808e5b86d0f5 [file] [log] [blame]
[%import "risks.eol";%]
<html>
<head>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
</head>
<body>
<table class="table table-stripped">
<tr>
<th>Title</th>
<th style="width:40px">Likelihood</th>
<th style="width:40px">Severity</th>
</tr>
[%for (risk in Risk.all.select(r|class.contains(r.getOverall()))){%]
<tr>
<td>[%=risk.title%]</td>
<td style="background-color:#[%=risk.likelihood.value.toColour()%]">&nbsp;</td>
<td style="background-color:#[%=risk.severity.value.toColour()%]">&nbsp;</td>
</tr>
[%}%]
</table>
</body>
</html>