mirror of
https://github.com/ysoftdevs/odc-analyzer.git
synced 2026-01-15 00:03:59 +01:00
7 lines
262 B
HTML
7 lines
262 B
HTML
@(failedReports: Set[Build], urlBase: String)
|
|
<strong>There are some reports that failed to build:</strong>
|
|
<ul>
|
|
@for(build <- failedReports.toSeq.sortBy(_.projectName)){
|
|
<li>@secureLink(build.resultLink(urlBase)){@build.projectName}</li>
|
|
}
|
|
</ul> |