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.

18 lines
602 B

  1. <ion-view view-title="Users">
  2. <ion-content>
  3. <ion-refresher
  4. pulling-text="{{'Pull_to_refresh' | translate}}..."
  5. on-refresh="doRefresh()">
  6. </ion-refresher>
  7. <ion-list><!-- item-remove-animate -->
  8. <ion-item class="item-avatar item-icon-right"
  9. ng-repeat="user in users" type="item-text-wrap" href="#/app/users/{{user._id}}">
  10. <img ng-src="{{user.img}}">
  11. <h2>{{user.username}}</h2>
  12. <p>{{user.shortDescription}}</p>
  13. <span class="badge badge-balanced">Following</span>
  14. </ion-item>
  15. </ion-list>
  16. </ion-content>
  17. </ion-view>