mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-14 13:33:03 +00:00
14 lines
413 B
HTML
14 lines
413 B
HTML
@for (row of boxesConfig; track row) {
|
|
<div class="mb-5">
|
|
<div class="mb-2">{{ row.title | translate }}</div>
|
|
<div class="row justify-content-between">
|
|
@for (box of row.boxes; track box) {
|
|
<div class="col-sm">
|
|
<ds-notification-box (selectedBoxConfig)="navigateToSelectedSearchConfig($event)" [boxConfig]="box"></ds-notification-box>
|
|
</div>
|
|
}
|
|
</div>
|
|
</div>
|
|
}
|
|
|