-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Mirko Mollik <[email protected]>
- Loading branch information
Showing
1 changed file
with
22 additions
and
20 deletions.
There are no files selected for viewing
42 changes: 22 additions & 20 deletions
42
apps/holder/projects/shared/history/history-show/history-show.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,24 @@ | ||
<div fxLayout="row" fxLayoutAlign="space-between center"> | ||
<div fxLayout="row" fxLayoutGap="16px" fxLayoutAlign="start center"> | ||
<button mat-icon-button [routerLink]="'../'"> | ||
<mat-icon>arrow_back</mat-icon> | ||
</button> | ||
<h3>{{ element.relyingParty }}</h3> | ||
<div *ngIf="element"> | ||
<div fxLayout="row" fxLayoutAlign="space-between center"> | ||
<div fxLayout="row" fxLayoutGap="16px" fxLayoutAlign="start center"> | ||
<button mat-icon-button [routerLink]="'../'"> | ||
<mat-icon>arrow_back</mat-icon> | ||
</button> | ||
<h3>{{ element.relyingParty }}</h3> | ||
</div> | ||
</div> | ||
<mat-card> | ||
<mat-card-content> | ||
<mat-list> | ||
<mat-list-item> | ||
<div matListItemTitle>Created at</div> | ||
<div matListItemLine>{{ element.created_at | date: 'medium' }}</div> | ||
</mat-list-item> | ||
<mat-list-item> | ||
<div matListItemTitle>Action</div> | ||
<div matListItemLine>{{ element.status }}</div> | ||
</mat-list-item> | ||
</mat-list> | ||
</mat-card-content> | ||
</mat-card> | ||
</div> | ||
<mat-card> | ||
<mat-card-content> | ||
<mat-list> | ||
<mat-list-item> | ||
<div matListItemTitle>Created at</div> | ||
<div matListItemLine>{{ element.created_at | date: 'medium' }}</div> | ||
</mat-list-item> | ||
<mat-list-item> | ||
<div matListItemTitle>Action</div> | ||
<div matListItemLine>{{ element.status }}</div> | ||
</mat-list-item> | ||
</mat-list> | ||
</mat-card-content> | ||
</mat-card> |