2017-09-13 17:44:33 +03:00
|
|
|
<nb-card [size]="breakpoint.width >= breakpoints.xxxl || breakpoint.width < breakpoints.md ? 'large' : 'xlarge'">
|
2017-08-01 17:42:21 +03:00
|
|
|
<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-09-05 17:30:24 +03:00
|
|
|
<i class="i-contact nb-phone"></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>
|
2019-01-08 16:17:20 +03:00
|
|
|
<span class="time">{{ c.time | date: 'shortTime' }}</span>
|
2017-07-05 20:18:53 +03:00
|
|
|
</div>
|
2017-08-01 17:42:21 +03:00
|
|
|
</nb-tab>
|
|
|
|
|
</nb-tabset>
|
|
|
|
|
</nb-card>
|