mirror of
https://github.com/ysoftdevs/odc-analyzer.git
synced 2026-01-16 00:34:18 +01:00
13 lines
445 B
HTML
13 lines
445 B
HTML
@import com.ysoft.odc.statistics.FailedProjects
|
|
@(failedProjects: FailedProjects)
|
|
@if(failedProjects.nonEmpty){
|
|
<div class="alert alert-danger">
|
|
Some projects are excluded from the report, because there is some failure for them:
|
|
<ul>
|
|
@for(proj <- failedProjects.failedProjectsSet.toIndexedSeq.sortBy(_.projectName.toLowerCase)){
|
|
<li>@proj.projectName</li>
|
|
}
|
|
</ul>
|
|
</div>
|
|
}
|