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()"
|
|
|
|
|
title="ویرایش"
|
|
|
|
|
/>
|
|
|
|
|
}
|
|
|
|
|
@if (showDelete) {
|
|
|
|
|
<p-button
|
|
|
|
|
size="small"
|
|
|
|
|
icon="pi pi-trash"
|
|
|
|
|
variant="outlined"
|
|
|
|
|
severity="danger"
|
|
|
|
|
(click)="delete.emit()"
|
|
|
|
|
title="حذف"
|
|
|
|
|
/>
|
|
|
|
|
}
|
|
|
|
|
@if (showDetails) {
|
2025-12-09 20:17:00 +03:30
|
|
|
<p-button size="small" icon="pi pi-chevron-left" (click)="details.emit()" title="جزئیات" />
|
2025-12-04 21:07:18 +03:30
|
|
|
}
|
|
|
|
|
</td>
|