project started, some html and js files added, showing events and users work communicating with server api

This commit is contained in:
arnaucode
2017-02-18 11:07:07 +01:00
parent baa0d5c6f6
commit 0ef2b84b13
29 changed files with 873 additions and 0 deletions

18
www/templates/users.html Normal file
View File

@@ -0,0 +1,18 @@
<ion-view view-title="Users">
<ion-content>
<ion-refresher
pulling-text="{{'Pull_to_refresh' | translate}}..."
on-refresh="doRefresh()">
</ion-refresher>
<ion-list><!-- item-remove-animate -->
<ion-item class="item-avatar item-icon-right"
ng-repeat="user in users" type="item-text-wrap" href="#/app/users/{{user._id}}">
<img ng-src="{{user.img}}">
<h2>{{user.username}}</h2>
<p>{{user.email}}</p>
<span class="badge badge-balanced">Following</span>
</ion-item>
</ion-list>
</ion-content>
</ion-view>