- Timestamp:
- 11/02/21 22:14:57 (3 years ago)
- Branches:
- master
- Children:
- 6c1585f
- Parents:
- 188ee53
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trip-planner-front/src/app/planner/planner.component.html
r188ee53 r6a80231 1 <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x" crossorigin="anonymous"> 1 2 2 3 <button mat-raised-button (click)="openDialog()">Create initial planner</button> 3 4 4 <mat-grid-list cols="4" rowHeight="250px">5 <mat-grid-tile *ngFor="let planner of planners" 6 <mat-card class=" example-card">5 <mat-grid-list cols="4" > 6 <mat-grid-tile *ngFor="let planner of planners"> 7 <mat-card class="d-flex flex-column"> 7 8 <mat-card-title>{{planner.name}}</mat-card-title> 8 9 <mat-card-content> 9 10 {{planner.description}} 10 11 </mat-card-content> 11 <mat-card-actions >12 <button mat-raised-button color="primary" >12 <mat-card-actions class="mt-auto"> 13 <button mat-raised-button color="primary" (click)="onClickEditPlanner(planner.id)"> 13 14 <mat-icon>edit</mat-icon> Edit 14 15 </button>
Note:
See TracChangeset
for help on using the changeset viewer.