11 lines
589 B
HTML
11 lines
589 B
HTML
|
<img *ngIf="avatarUrl" [src]="avatarUrl" [alt]="'core.pictureof' | translate:{$a: fullname}" core-external-content
|
||
|
onError="this.src='assets/img/user-avatar.png'" role="presentation" (click)="gotoProfile($event)">
|
||
|
|
||
|
<img *ngIf="!avatarUrl" src="assets/img/user-avatar.png" [alt]="'core.pictureof' | translate:{$a: fullname}" role="presentation"
|
||
|
(click)="gotoProfile($event)">
|
||
|
|
||
|
<span *ngIf="checkOnline && isOnline()" class="contact-status online"></span>
|
||
|
|
||
|
<img *ngIf="extraIcon" [src]="extraIcon" alt="" role="presentation" class="core-avatar-extra-icon">
|
||
|
|
||
|
<ng-content></ng-content>
|