24 lines
721 B
HTML
Raw Normal View History

2019-12-03 14:32:50 +09:00
<mat-card class="confirm-card mat-elevation-z">
<mat-card-header>
<mat-card-title class="title">
2020-01-08 12:30:39 +09:00
<span *ngIf="data.notice.topYn">
[{{ 'notice.important' | translate }}]
</span>
2019-12-03 14:32:50 +09:00
{{ data.notice.title }}
</mat-card-title>
</mat-card-header>
<mat-card-content>
<div>
{{ data.notice.regDate }}
</div>
<perfect-scrollbar>
<p [innerHTML]="data.notice.content | linky" class="contnets"></p>
</perfect-scrollbar>
</mat-card-content>
<mat-card-actions class="button-farm flex-row">
<button mat-stroked-button (click)="onClickConfirm()" class="mat-primary">
2020-01-08 12:30:39 +09:00
{{ 'common.messages.confirm' | translate }}
2019-12-03 14:32:50 +09:00
</button>
</mat-card-actions>
</mat-card>