2025-12-04 21:07:18 +03:30
|
|
|
<td class="text-center flex items-center gap-1">
|
|
|
|
|
@if (showEdit) {
|
|
|
|
|
<p-button
|
|
|
|
|
size="small"
|
|
|
|
|
icon="pi pi-pencil"
|
|
|
|
|
variant="outlined"
|
|
|
|
|
severity="primary"
|
|
|
|
|
(click)="edit.emit()"
|
2026-05-05 22:42:06 +03:30
|
|
|
pTooltip="ویرایش"
|
2025-12-04 21:07:18 +03:30
|
|
|
/>
|
|
|
|
|
}
|
|
|
|
|
@if (showDelete) {
|
|
|
|
|
<p-button
|
|
|
|
|
size="small"
|
|
|
|
|
icon="pi pi-trash"
|
|
|
|
|
variant="outlined"
|
|
|
|
|
severity="danger"
|
|
|
|
|
(click)="delete.emit()"
|
2026-05-05 22:42:06 +03:30
|
|
|
pTooltip="ویرایش"
|
2025-12-04 21:07:18 +03:30
|
|
|
/>
|
|
|
|
|
}
|
|
|
|
|
@if (showDetails) {
|
2026-05-05 22:42:06 +03:30
|
|
|
<p-button size="small" icon="pi pi-chevron-left" (click)="details.emit()" [pTooltip]="showDetailsText" />
|
2025-12-04 21:07:18 +03:30
|
|
|
}
|
|
|
|
|
</td>
|