mirror of
https://github.com/ysoftdevs/odc-analyzer.git
synced 2026-01-11 14:30:50 +01:00
18 lines
603 B
HTML
18 lines
603 B
HTML
@(
|
|
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
|
|
)
|
|
|
|
} |