Guest User

Untitled

a guest
Dec 16th, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. <ion-header>
  2.  
  3. <ion-navbar>
  4. <ion-title>Admin Page</ion-title>
  5.  
  6. <ion-buttons end>
  7. <button ion-button (click) = "navigateToAddBookPage()" >
  8. <ion-icon name="add">Add Book</ion-icon>
  9. </button>
  10. </ion-buttons>
  11.  
  12.  
  13. </ion-navbar>
  14.  
  15. </ion-header>
  16.  
  17. <ion-content padding>
  18.  
  19. <ion-item *ngFor="let item of getBookRef$ | async" (click)="selectBook(item)">
  20. <h2>Name Of Book: : {{item.nameOfBook}}</h2>
  21. <h3>Writer: {{item.nameOfWriter}}</h3>
  22. <h3>City: {{item.nameOfCity}}</h3>
  23. <h3>Library: {{item.nameOfLibrary}}</h3>
  24. </ion-item>
  25.  
  26. </ion-content>
Add Comment
Please, Sign In to add comment