2019-07-02 16:18:09 +03:00
|
|
|
<nb-card size="giant">
|
2017-08-01 17:42:21 +03:00
|
|
|
<nb-tabset fullWidth>
|
2019-07-02 16:18:09 +03:00
|
|
|
|
2017-08-01 17:42:21 +03:00
|
|
|
<nb-tab tabTitle="Contacts">
|
2019-07-02 16:18:09 +03:00
|
|
|
<nb-list>
|
|
|
|
<nb-list-item class="contact" *ngFor="let c of contacts">
|
|
|
|
<nb-user [picture]="c.user.picture" [name]="c.user.name" [title]="c.type" size="large"></nb-user>
|
|
|
|
<nb-icon icon="phone-outline" pack="eva"></nb-icon>
|
|
|
|
</nb-list-item>
|
|
|
|
</nb-list>
|
2017-08-01 17:42:21 +03:00
|
|
|
</nb-tab>
|
2019-07-02 16:18:09 +03:00
|
|
|
|
2017-08-01 17:42:21 +03:00
|
|
|
<nb-tab tabTitle="Recent">
|
2019-07-02 16:18:09 +03:00
|
|
|
<nb-list>
|
|
|
|
<nb-list-item class="contact" *ngFor="let c of recent">
|
|
|
|
<nb-user [picture]="c.user.picture" [name]="c.user.name" [title]="c.type" size="large"></nb-user>
|
|
|
|
<span class="caption">{{ c.time | date: 'shortTime' }}</span>
|
|
|
|
</nb-list-item>
|
|
|
|
</nb-list>
|
2017-08-01 17:42:21 +03:00
|
|
|
</nb-tab>
|
2019-07-02 16:18:09 +03:00
|
|
|
|
2017-08-01 17:42:21 +03:00
|
|
|
</nb-tabset>
|
|
|
|
</nb-card>
|