source: trip-planner-front/src/app/location/location.component.html@ bdd6491

Last change on this file since bdd6491 was 1ad8e64, checked in by Ema <ema_spirova@…>, 3 years ago

spring security

  • Property mode set to 100644
File size: 1.1 KB
RevLine 
[ceaed42]1<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/css/bootstrap.min.css" rel="stylesheet"
2 integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x" crossorigin="anonymous">
[1ad8e64]3
4<p-toast></p-toast>
[6c1585f]5<h3>Here are all locations</h3>
[e29cc2e]6<button pButton pRipple type="button" icon="pi pi-bell" class="p-button-rounded p-button-warning" label="Back to my Planners" (click)="onClickBackToMyPlanners()"></button>
7<table class="table">
[ceaed42]8 <thead>
9 <tr>
10 <th scope="col">#</th>
11 <th scope="col">Location name</th>
12 <th scope="col"> Add to my planner</th>
13 <th scope="col">See details </th>
14 </tr>
15 </thead>
16 <tbody>
17 <tr *ngFor="let location of listLocations">
18 <td>{{location.id}}</td>
19 <td>{{location.name}}</td>
[e29cc2e]20 <td><button type="button" (click)="show(location)" pButton icon="pi pi-info-circle"
21 label="Add to my planner"></button></td>
22 <td><button type="button" color="primary" pButton icon="pi pi-info-circle"
23 (click)="onClickSeeDetails(location.id)" label="See details"></button></td>
24 </tr>
[ceaed42]25 </tbody>
[e29cc2e]26</table>
27
Note: See TracBrowser for help on using the repository browser.