- Timestamp:
- 01/24/22 21:08:32 (3 years ago)
- Branches:
- master
- Children:
- 76712b2
- Parents:
- bdd6491
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trip-planner-front/src/app/location/location.component.html
rbdd6491 rb738035 9 9 <tr> 10 10 <th scope="col">#</th> 11 <th scope="col">Photo</th> 11 12 <th scope="col">Location name</th> 12 13 <th scope="col"> Add to my planner</th> … … 17 18 <tr *ngFor="let location of listLocations"> 18 19 <td>{{location.id}}</td> 20 <td><img src="data:image/png;base64,{{location.photo}}" /></td> 19 21 <td>{{location.name}}</td> 20 22 <td><button type="button" (click)="show(location)" pButton icon="pi pi-info-circle" 21 23 label="Add to my planner"></button></td> 22 24 <td><button type="button" color="primary" pButton icon="pi pi-info-circle" 23 (click)="onClickSeeDetails(location.id)" label="See details"></button></td> 25 (click)="onClickSeeDetails(location.id)" label="See details"></button> 26 </td> 24 27 </tr> 25 28 </tbody>
Note:
See TracChangeset
for help on using the changeset viewer.