Files
doneit-web/src/app/shared/popover/chat-options-popover/chat-options-popover.page.html
T

20 lines
1.2 KiB
HTML
Raw Normal View History

<ion-content class="container">
<div class="arrow-right">
2021-04-12 10:16:43 +01:00
<button class="btn-no-color" (click)="close()">
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>
2021-04-12 10:16:43 +01:00
</button>
</div>
<div class="buttons">
2021-12-23 07:40:01 +01:00
<button (click)="takePicture()" full class="btn-ok" shape="round" >Tirar Fotografia</button>
2023-08-31 13:07:52 +01:00
<button (click)="addFile()" class="btn-ok" shape="round" >Anexar Documento</button>
2022-02-03 16:36:05 +01:00
<button (click)="anexarFoto()" full class="btn-ok" shape="round" >Anexar Fotografia</button>
2021-10-07 15:30:36 +01:00
<button (click)="addDocGestaoDocumental()" class="btn-ok" shape="round" >Gestão Documental</button>
<div class="solid"></div>
2023-01-24 15:56:47 +01:00
2023-06-19 12:15:39 +01:00
<!-- <button *ngIf="p.userPermission([p.permissionList.Agenda.access]) == true " (click)="bookMeeting()" class="btn-ok" shape="round" >Novo Evento</button> -->
<button (click)="close()" full class="btn-cancel" shape="round" >Cancelar</button>
</div>
2020-12-29 12:40:19 +01:00
</ion-content>