ngx-admin/src/app/pages/dashboard/contacts/contacts.component.html
2017-08-01 18:00:53 +03:00

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>