38 lines
1.6 KiB
HTML
38 lines
1.6 KiB
HTML
<ion-header>
|
|
<ion-toolbar>
|
|
<ion-buttons slot="start">
|
|
<ion-back-button [text]="'core.back' | translate"></ion-back-button>
|
|
</ion-buttons>
|
|
<ion-title>
|
|
<h2>{{ 'addon.notifications.notifications' | translate }}</h2>
|
|
</ion-title>
|
|
</ion-toolbar>
|
|
</ion-header>
|
|
<ion-content>
|
|
<core-loading [hideUntil]="loaded">
|
|
<ion-item class="ion-text-wrap" [attr.aria-label]="subject">
|
|
<core-user-avatar *ngIf="userIdFrom > 0" slot="start" [userId]="userIdFrom" [profileUrl]="profileImageUrlFrom"
|
|
[fullname]="userFromFullName">
|
|
<div class="core-avatar-extra-img" *ngIf="iconUrl && !modname">
|
|
<img [src]="iconUrl" alt="" role="presentation">
|
|
</div>
|
|
<core-mod-icon *ngIf="modname" [modicon]="iconUrl" [modname]="modname" [showAlt]="false">
|
|
</core-mod-icon>
|
|
</core-user-avatar>
|
|
|
|
<img *ngIf="userIdFrom <= 0 && iconUrl" [src]="iconUrl" alt="" role="presentation" class="core-notification-icon" slot="start">
|
|
|
|
<ion-label>
|
|
<p class="item-heading">{{ subject }}</p>
|
|
<p *ngIf="userIdFrom > 0">{{ userFromFullName }}</p>
|
|
</ion-label>
|
|
</ion-item>
|
|
<ion-item class="ion-text-wrap">
|
|
<ion-label>
|
|
<core-format-text [text]="content | coreCreateLinks" contextLevel="system" [contextInstanceId]="0">
|
|
</core-format-text>
|
|
</ion-label>
|
|
</ion-item>
|
|
</core-loading>
|
|
</ion-content>
|