mirror of
https://github.com/ysoftdevs/odc-analyzer.git
synced 2026-01-14 15:53:53 +01:00
8 lines
316 B
HTML
8 lines
316 B
HTML
@import com.ysoft.odc.statistics.FailedProjects
|
|
@(message: Html, failedReports: FailedProjects, buildLink: ReportInfo => String)
|
|
@message
|
|
<ul>
|
|
@for(project <- failedReports.failedProjectsSet.toSeq.sortBy(_.projectName)){
|
|
<li>@secureLink(buildLink(project)){@friendlyProjectName(project)}</li>
|
|
}
|
|
</ul> |