2017-08-01 17:42:21 +03:00
|
|
|
<nb-card size="large">
|
|
|
|
|
<nb-tabset fullWidth>
|
|
|
|
|
<nb-tab tabTitle="Contacts">
|
2017-06-27 12:26:09 +03:00
|
|
|
<div class="contact" *ngFor="let c of contacts">
|
2017-08-01 17:42:21 +03:00
|
|
|
<nb-user [picture]="c.user.picture" [name]="c.user.name" [title]="c.type" size="large"></nb-user>
|
2017-07-05 20:18:53 +03:00
|
|
|
<i class="i-contact ion-ios-telephone-outline"></i>
|
2017-06-27 12:26:09 +03:00
|
|
|
</div>
|
2017-08-01 17:42:21 +03:00
|
|
|
</nb-tab>
|
|
|
|
|
<nb-tab tabTitle="Recent">
|
2017-07-05 20:18:53 +03:00
|
|
|
<div class="contact" *ngFor="let c of recent">
|
2017-08-01 17:42:21 +03:00
|
|
|
<nb-user [picture]="c.user.picture" [name]="c.user.name" [title]="c.type" size="large"></nb-user>
|
2017-07-05 20:18:53 +03:00
|
|
|
<span class="time">{{ c.time }}</span>
|
|
|
|
|
</div>
|
2017-08-01 17:42:21 +03:00
|
|
|
</nb-tab>
|
|
|
|
|
</nb-tabset>
|
|
|
|
|
</nb-card>
|