-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchat.page.html
36 lines (29 loc) · 930 Bytes
/
chat.page.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<ion-header>
<ion-toolbar>
<ion-title>chats</ion-title>
</ion-toolbar>
</ion-header>
<ion-content>
<div>
<ion-list>
<ion-item class="readOrNot" *ngFor="let chat of chatsArray; let i = index"
[routerLink]
(click)='read(i)'>
<ion-item>
<ion-avatar item-start>
<!--'http://www.ivoiturage.com/server/manage-data.php';-->
<img [src]="'http://localhost/Ivoiturage2.optimax.net/ivoiturage2/avatar/' + chat.ImageProfil">
</ion-avatar>
<ion-label>
{{chat.Message}}
</ion-label>
</ion-item>
<ion-item>
<ion-label id="date">
{{chat.Date}}
</ion-label>
</ion-item>
</ion-item>
</ion-list>
</div>
</ion-content>