PeerTube/client/src/app/+admin/shared/user-email-info.component.html

14 lines
349 B
HTML
Raw Normal View History

2023-01-19 09:29:47 +01:00
<ng-container>
<a [href]="'mailto:' + entry.email" [title]="getTitle()">
@if (showEmailVerifyInformation) {
@if (entry.emailVerified === true) {
&#x2713; {{ entry.email }}
} @else {
<em *ngIf="!entry.emailVerified">? {{ entry.email }}</em>
}
} @else {
2023-01-19 09:29:47 +01:00
{{ entry.email }}
}
2023-01-19 09:29:47 +01:00
</a>
</ng-container>