source: trip-planner-front/src/app/planner/planner.component.html@ 188ee53

Last change on this file since 188ee53 was fa375fe, checked in by Ema <ema_spirova@…>, 3 years ago

adding new components

  • Property mode set to 100644
File size: 726 bytes
Line 
1
2<button mat-raised-button (click)="openDialog()">Create initial planner</button>
3
4<mat-grid-list cols="4" rowHeight="250px">
5 <mat-grid-tile *ngFor="let planner of planners" >
6 <mat-card class="example-card" >
7 <mat-card-title>{{planner.name}}</mat-card-title>
8 <mat-card-content>
9 {{planner.description}}
10 </mat-card-content>
11 <mat-card-actions>
12 <button mat-raised-button color="primary">
13 <mat-icon>edit</mat-icon> Edit
14 </button>
15
16 <button mat-raised-button color="accent">
17 <mat-icon>remove_red_eye</mat-icon>Details
18 </button>
19 </mat-card-actions>
20 </mat-card>
21 </mat-grid-tile>
22</mat-grid-list>
Note: See TracBrowser for help on using the repository browser.