2020-12-16 15:07:28 +01:00
|
|
|
<ion-header>
|
|
|
|
|
<app-header></app-header>
|
|
|
|
|
</ion-header>
|
2020-12-15 19:37:42 +01:00
|
|
|
<ion-header class="ion-no-border">
|
|
|
|
|
<ion-toolbar class="bg-blue">
|
|
|
|
|
<div class="main-header">
|
|
|
|
|
<div class="title-content">
|
|
|
|
|
<div class="div-title">
|
2020-12-17 10:59:11 +01:00
|
|
|
<ion-label class="title">Acções Presidenciais</ion-label>
|
2020-12-15 19:37:42 +01:00
|
|
|
</div>
|
|
|
|
|
<div class="div-icon">
|
|
|
|
|
<ion-icon (click)="AddPublicationFolder()" slot="end" src='assets/images/icons-add.svg'></ion-icon>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</ion-toolbar>
|
|
|
|
|
</ion-header>
|
2020-11-30 16:08:29 +01:00
|
|
|
|
|
|
|
|
<ion-content>
|
2020-12-10 11:22:06 +01:00
|
|
|
<ion-refresher name="refresher" slot="fixed" (ionRefresh)="doRefresh($event)">
|
2020-12-15 19:37:42 +01:00
|
|
|
<ion-progress-bar type="indeterminate" *ngIf="showLoader"></ion-progress-bar>
|
|
|
|
|
<ion-refresher-content>
|
|
|
|
|
</ion-refresher-content>
|
|
|
|
|
</ion-refresher>
|
2020-11-30 16:08:29 +01:00
|
|
|
<div class="main-content">
|
2020-12-09 12:10:19 +01:00
|
|
|
<div class="item"
|
|
|
|
|
*ngFor="let viagem of publicationsTravelFolderList"
|
|
|
|
|
|
|
|
|
|
(click)="viewPublications(viagem)">
|
2020-11-30 16:08:29 +01:00
|
|
|
<div class="item-icon">
|
|
|
|
|
<ion-icon slot="end" src='assets/images/icons-plane-active.svg'></ion-icon>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="item-content">
|
|
|
|
|
<ion-label>
|
2020-12-11 15:09:53 +01:00
|
|
|
<p class="item-content-date">De {{viagem.DateBegin}} a {{viagem.DateEnd}}</p>
|
2020-12-09 12:10:19 +01:00
|
|
|
<p class="item-content-title">{{viagem.Description}}</p>
|
|
|
|
|
<p class="item-content-detail">{{viagem.Detail}}</p>
|
2020-11-30 16:08:29 +01:00
|
|
|
</ion-label>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2020-12-09 12:10:19 +01:00
|
|
|
<div class="item"
|
|
|
|
|
|
|
|
|
|
*ngFor="let evento of publicationsEventFolderList"
|
|
|
|
|
(click)="viewPublications(evento)">
|
2020-11-30 16:08:29 +01:00
|
|
|
<div class="item-icon2">
|
|
|
|
|
<ion-icon slot="end" src='assets/images/icons-nav-actions.svg'></ion-icon>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="item-content">
|
|
|
|
|
<ion-label>
|
2020-12-09 12:10:19 +01:00
|
|
|
<p class="item-content-date">{{evento.DateBegin}}</p>
|
|
|
|
|
<p class="item-content-title">{{evento.Description}}</p>
|
2020-11-30 16:08:29 +01:00
|
|
|
</ion-label>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</ion-content>
|