mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-16 15:40:11 +01:00
16 lines
618 B
HTML
16 lines
618 B
HTML
<nb-card size="large">
|
|
<nb-tabset fullWidth>
|
|
<nb-tab tabTitle="Contacts">
|
|
<div class="contact" *ngFor="let c of contacts">
|
|
<nb-user [picture]="c.user.picture" [name]="c.user.name" [title]="c.type" size="large"></nb-user>
|
|
<i class="i-contact ion-ios-telephone-outline"></i>
|
|
</div>
|
|
</nb-tab>
|
|
<nb-tab tabTitle="Recent">
|
|
<div 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="time">{{ c.time }}</span>
|
|
</div>
|
|
</nb-tab>
|
|
</nb-tabset>
|
|
</nb-card>
|