2021-09-03 16:20:22 +01:00
|
|
|
<ion-content class="wrapper">
|
2021-05-25 10:32:15 +01:00
|
|
|
<div class="arrow-right" (click)="closePopover()">
|
|
|
|
|
<button class="btn-no-color">
|
2021-10-25 15:31:43 +01:00
|
|
|
<ion-icon *ngIf="ThemeService.currentTheme == 'default' "slot="end" class="arrow-right-icon" src='assets/images/icons-arrow-arrow-right.svg'></ion-icon>
|
|
|
|
|
<ion-icon *ngIf="ThemeService.currentTheme == 'gov' " slot="end" class="arrow-right-icon" src='assets/images/theme/gov/icons-calendar-arrow-right.svg'></ion-icon>
|
2022-10-20 15:45:10 +01:00
|
|
|
<ion-icon *ngIf="ThemeService.currentTheme == 'doneIt' " slot="end" class="arrow-right-icon" src='assets/images/theme/{{ThemeService.currentTheme}}/icons-calendar-arrow-right.svg'></ion-icon>
|
2021-05-25 10:32:15 +01:00
|
|
|
</button>
|
|
|
|
|
</div>
|
2022-06-03 16:53:50 +01:00
|
|
|
|
2021-05-25 10:32:15 +01:00
|
|
|
<div class="buttons">
|
2023-08-22 13:31:19 +01:00
|
|
|
<button *ngIf="activityInstanceName == 'Aprovar Evento'" class="btn-cancel" shape="round" (click)="emendarTask()">Enviar para Revisão</button>
|
2022-06-29 15:31:55 +01:00
|
|
|
<button *ngIf="activityInstanceName == 'Aprovar Evento'" class="btn-cancel" shape="round" (click)="editTask()">Editar</button>
|
2022-06-03 16:53:50 +01:00
|
|
|
<button *ngIf="activityInstanceName == 'Aprovar Evento'" class="btn-cancel" shape="round" (click)="approveTask()">Aprovar</button>
|
2021-05-25 10:32:15 +01:00
|
|
|
<div class="solid"></div>
|
2022-06-03 16:53:50 +01:00
|
|
|
<button *ngIf="activityInstanceName != 'Aprovar Evento'" class="btn-cancel" shape="round" (click)="editTask()">Editar</button>
|
|
|
|
|
<button *ngIf="activityInstanceName != 'Aprovar Evento'" class="btn-delete" shape="round" (click)="rejeitar()">Rejeitar</button>
|
2021-05-25 10:32:15 +01:00
|
|
|
</div>
|
|
|
|
|
</ion-content>
|