You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
857 B

8 years ago
8 years ago
  1. <ion-modal-view view-title="{{'User' | translate}}">
  2. <ion-content>
  3. <h4 class="padding">
  4. <img class='o-imgTitle' src="img/like.png" />
  5. {{'Likes' | translate}} {{newtravel.title}}
  6. <div class="item-note">
  7. <button class="button button-small button-dark" ng-click="closeModalFavsList()">X</button>
  8. </div>
  9. </h4>
  10. <div class="list">
  11. <a ng-repeat="fav in user.favs | orderBy: 'date'" class="item item-avatar" ng-click="closeModalAndGoUser()" ng-href="#/app/users/{{fav.username}}">
  12. <img ng-src="img/avatars/{{fav.avatar}}.png">
  13. <h2>{{fav.username}}</h2>
  14. </a>
  15. </div>
  16. <!--<div class="item-note">
  17. <button class="button button-small button-dark" ng-click="closeModalFavsList()">{{'Close' | translate}}</button>
  18. </div>-->
  19. </ion-content>
  20. </ion-modal-view>