Files
dvbooking/admin/src/app/components/generic-action-column/generic-action-column.html
Schneider Roland 008b644bb1 small improvements:
- add colorview component
 - improve generic action column
 - improve generic table
 - improve event-type-table.component.ts
 - add headerText to admin layout
2025-11-21 21:14:00 +01:00

14 lines
389 B
HTML

<div class="flex flex-row gap-1 items-center">
@for (action of actions(); track action){
<a class="btn btn-primary" title="{{action.title ?? '' }}" (click)="onClick($event,action)">
@if(action.svgIcon){
<span [outerHTML]="action.svgIcon | safeHtml"></span>
}
@if ( action.text !== false){
{{action.text || action.action}}
}
</a>
}
</div>