mirror of
https://github.com/ysoftdevs/odc-analyzer.git
synced 2026-05-04 06:14:22 +02:00
Initial commit
This commit is contained in:
18
app/views/statistics/allLibraries.scala.html
Normal file
18
app/views/statistics/allLibraries.scala.html
Normal file
@@ -0,0 +1,18 @@
|
||||
@(
|
||||
projectsWithSelection: ProjectsWithSelection,
|
||||
allDependencies: Seq[GroupedDependency]
|
||||
)(implicit header: DefaultRequest)
|
||||
|
||||
@main(
|
||||
title = s"All libraries for ${projectsWithSelection.projectNameText}",
|
||||
projectsOption = Some((projectsWithSelection, routes.Statistics.allLibraries(_)))
|
||||
){
|
||||
@dependencyList(
|
||||
"all",
|
||||
allDependencies.sortBy(_.identifiers.toIndexedSeq.sortBy(i => (i.confidence.id, i.identifierType, i.name)).mkString(", ")),
|
||||
selectorOption = projectsWithSelection.selectorString,
|
||||
expandByDefault = false,
|
||||
addButtons = false
|
||||
)
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user