mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-18 20:47:54 +00:00
All GET methods for the module Publications have been integrated.
- Create new folder for publications have been integrated. - Adicional touch to display the data in a more friendly way added.
This commit is contained in:
@@ -24,26 +24,33 @@
|
||||
<ion-icon (click)="AddPublicationFolder()" slot="end" src='assets/images/icons-add.svg'></ion-icon>
|
||||
</div>
|
||||
</div>
|
||||
<div class="item" [routerLink]="['/home/publications/view-publications']">
|
||||
<!-- [routerLink]="['/home/publications/view-publications', folder.ProcessId]" -->
|
||||
<div class="item"
|
||||
*ngFor="let viagem of publicationsTravelFolderList"
|
||||
|
||||
(click)="viewPublications(viagem)">
|
||||
<div class="item-icon">
|
||||
<ion-icon slot="end" src='assets/images/icons-plane-active.svg'></ion-icon>
|
||||
</div>
|
||||
<div class="item-content">
|
||||
<ion-label>
|
||||
<p class="item-content-date">12 de Janeiro</p>
|
||||
<p class="item-content-title">Viagem a Maputo</p>
|
||||
<p class="item-content-detail">Investida de Filipe Nyusi</p>
|
||||
<p class="item-content-date">{{viagem.DateBegin}}</p>
|
||||
<p class="item-content-title">{{viagem.Description}}</p>
|
||||
<p class="item-content-detail">{{viagem.Detail}}</p>
|
||||
</ion-label>
|
||||
</div>
|
||||
</div>
|
||||
<div class="item">
|
||||
<div class="item"
|
||||
|
||||
*ngFor="let evento of publicationsEventFolderList"
|
||||
(click)="viewPublications(evento)">
|
||||
<div class="item-icon2">
|
||||
<ion-icon slot="end" src='assets/images/icons-nav-actions.svg'></ion-icon>
|
||||
</div>
|
||||
<div class="item-content">
|
||||
<ion-label>
|
||||
<p class="item-content-date">07 de Janeiro</p>
|
||||
<p class="item-content-title">Decreto de Cadastro Social Único</p>
|
||||
<p class="item-content-date">{{evento.DateBegin}}</p>
|
||||
<p class="item-content-title">{{evento.Description}}</p>
|
||||
</ion-label>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user