Advertisement
Guest User

Untitled

a guest
Oct 15th, 2019
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. <table class="table table-bordered table-striped">
  2. <thead class="thead-dark">
  3. <tr>
  4. <th scope="col">ID</th>
  5. <th scope="col">Name</th>
  6. <th scope="col">Adresa</th>
  7. </tr>
  8. </thead>
  9. <tbody>
  10. <tr *ngFor="let restaurant of restaurants">
  11. <td>{{ restaurant.idRestaurant }}</td>
  12. <td>{{ restaurant.name }}</td>
  13. <td>{{ restaurant.adresa }}</td>
  14. <button class="btn btn-info" (click)="selectRestaurant(restaurant.idRestaurant)">SELECT</button>
  15. </tr>
  16. </tbody>
  17. </table>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement