add breadcrumbs

This commit is contained in:
Roland Schneider
2025-11-21 15:24:35 +01:00
parent dfc3afd4a9
commit b047ecc589
19 changed files with 294 additions and 73 deletions

View File

@@ -1,3 +1,10 @@
@for (action of actions(); track action){
<a class="btn btn-primary" (click)="onClick($event,action)">{{action.action}}</a>
<a class="btn btn-primary" (click)="onClick($event,action)">
@if(action.svgIcon){
<span [outerHTML]="action.svgIcon | safeHtml"></span>
}
@if ( action.text !== false){
{{action.text || action.action}}
}
</a>
}