<!-- Actor -->
<!-- <login-hint-->
<!-- *ngIf="!isNotification"-->
<!-- [login]="historyEvent.account"-->
<!-- class="sdi-bold"-->
<!-- >-->
<!-- </login-hint>-->
<!-- Summary -->
<span [innerHTML]="summaryText"></span>
<!-- Comment parts -->
<div *ngIf="historyEvent.status?.commentParts" class="mt-3">
<p *ngFor="let commentPart of historyEvent.status.commentParts" [innerHTML]="commentPart"></p>
</div>
<!-- either Attribute changes -->
<div *ngIf="historyEvent.attributes; else statusChange" class="sdi-card-wrapper mt-3">
<application-history-event-attributes *ngIf="historyEvent.applicationAttributes.length"
i18n-header="@@applicationAttributesHeader" header="Атрибуты заявки"
[searchQuery]="searchQuery"
[eventAttributes]="historyEvent.applicationAttributes">
</application-history-event-attributes>
<application-history-event-attributes *ngIf="historyEvent.itemAttributes.length"
i18n-header="@@applicationItemAttributesHeader" header="Атрибуты позиции"
[searchQuery]="searchQuery"
[eventAttributes]="historyEvent.itemAttributes">
</application-history-event-attributes>
</div>
<!-- or Status change -->
<ng-template #statusChange>
<!-- #20093 similar applications -->
<div *ngIf="historyEvent.foundDuplicates?.length" class="mt-3">
<h4 i18n="@@foundSimilarApplicationsIgnoredHeader">
Найденные с идентичными значениями заявки проигнорированы:
</h4>
<applications-list
[applications]="historyEvent.foundDuplicates">
</applications-list>
</div>
</ng-template>
|