mirror of
https://github.com/ysoftdevs/odc-analyzer.git
synced 2026-03-25 18:42:07 +01:00
Initial commit
This commit is contained in:
12
app/views/groupedDependencyList.scala.html
Normal file
12
app/views/groupedDependencyList.scala.html
Normal file
@@ -0,0 +1,12 @@
|
||||
@(name: String, id: String, collapse: Boolean = false, allowSnoozes: Boolean = true, versions: Map[String, Int])(list: Seq[GroupedDependency])(implicit rh: DefaultRequest, snoozes: SnoozesInfo, messages: Messages)
|
||||
@conditionalList(list, name, id, collapse = collapse, allowSnoozes = allowSnoozes, versions = versions){
|
||||
<table class="table">
|
||||
@for(dep <- list){
|
||||
<tr>
|
||||
<td>@identifiers(dep.mavenIdentifiers)</td>
|
||||
<td>@identifiers(dep.cpeIdentifiers)</td>
|
||||
<td>@dep.descriptions</td>
|
||||
</tr>
|
||||
}
|
||||
</table>
|
||||
}
|
||||
Reference in New Issue
Block a user