mirror of
https://github.com/ysoftdevs/odc-analyzer.git
synced 2026-01-14 07:44:00 +01:00
15 lines
548 B
HTML
15 lines
548 B
HTML
@(depPrefix: String, expandByDefault: Boolean, dep: GroupedDependency, selectorOption: Option[String])
|
|
<div id="@depPrefix-details" class="collapse @if(expandByDefault){ in }" data-lazyload-url="@routes.Statistics.dependencyDetails(
|
|
depPrefix = depPrefix,
|
|
depId = dep.hashes,
|
|
selectorOption = selectorOption
|
|
)">
|
|
@if(expandByDefault){
|
|
@dependencyDetailsInner(
|
|
depPrefix = depPrefix,
|
|
selectorOption = selectorOption,
|
|
dep = dep,
|
|
showAffectedProjects = true
|
|
)
|
|
}
|
|
</div> |