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.
|
|
<ion-view view-title="{{'Users' | translate}}"> <ion-content> <ion-refresher pulling-text="Pull to refresh..." on-refresh="doRefresh()"> </ion-refresher> <div class="list"> <div class="card" ng-show="!users"> <div class="item item-text-wrap"> {{'No_data_in_memory' | translate}}<br> {{'Pull_from_top_to_refresh' | translate}} </div> </div>
<a ng-repeat="user in users | orderBy: 'date'" class="item item-avatar" href="#/app/users/{{user.username}}"> <img ng-src="img/avatars/{{user.avatar}}.png"> <h2>{{user.username}}</h2> <p> {{user.description}} </p> </a> </div> </ion-content> </ion-view>
|