mirror of
https://github.com/ysoftdevs/odc-analyzer.git
synced 2026-03-31 06:13:24 +02:00
Added notice when there are some failed projects. This required some refactorings and fixes, that are also included in this commit.
This commit is contained in:
12
app/views/healthReport.scala.html
Normal file
12
app/views/healthReport.scala.html
Normal file
@@ -0,0 +1,12 @@
|
||||
@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>
|
||||
}
|
||||
Reference in New Issue
Block a user