Advertisement
Guest User

Untitled

a guest
Jan 24th, 2017
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.50 KB | None | 0 0
  1. <ion-header>
  2. <ion-navbar>
  3. <ion-title>{{property?.header}}</ion-title>
  4. </ion-navbar>
  5. </ion-header>
  6. <ion-content class="card-background-page">
  7. <div>
  8. <ion-img width="375" height="150" src="{{property?.image_url}}"></ion-img>
  9. <div>{{property?.price}}</div>
  10. </div>
  11. <ion-list inset>
  12. <button ion-item (click)="goToStats('sales_presentation_downloads', property, 'statistisk')">
  13. sales_presentation_downloads
  14. <div item-right>{{property?.stats.total_count.sales_presentation_downloads}}</div>
  15. </button>
  16. <button ion-item (click)="goToStats('showings', property, 'statistisk')">
  17. showings
  18. <div item-right>{{property?.stats.total_count.showings}}</div>
  19. </button>
  20. <button ion-item (click)="goToStats('favorites', property, 'statistisk')">
  21. favorites
  22. <div item-right>{{property?.stats.total_count.favorites}}</div>
  23. </button>
  24. <button ion-item (click)="goToStats('visits', property, 'statistisk')">
  25. visits
  26. <div item-right>{{property?.stats.total_count.visits}}</div>
  27. </button>
  28. </ion-list>
  29. <button>Go to lokalbolig</button>
  30. <button>Go to facebook</button>
  31. <!--<button class="button" (click)="openMarket('http://www.lokalbolig.dk/')">Go to lokalbolig</button>-->
  32. <!--<button class="button" (click)="openMarket('https://www.facebook.com/lokalbolignoerrebro/')">Go to facebook</button>-->
  33. </ion-content>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement