@import com.ysoft.odc.statistics.FailedProjects
@(failedProjects: FailedProjects)
@if(failedProjects.nonEmpty){
Some projects are excluded from the report, because there is some failure for them:
@for(proj <- failedProjects.failedProjectsSet.toIndexedSeq.sortBy(_.projectName.toLowerCase)){
- @proj.projectName
}
}