Subversion Repositories SmartDukaan

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
15747 anikendra 1
<ion-view view-title="{{user.name}}">
2
  <ion-content>
3
    <div class="item item-avatar">
4
	    <img src="{{user.profile_pic}}">
5
	    <h2>{{user.name}} ({{user.id}})</h2>
6
	    <p>{{user.email}}</p>
7
	    <p>{{user.mobilenumber}}</p>
8
	    <p>{{user.referral_code}}</p>
9
	  </div>
10
 
11
	  <div class="item item-body">
12
	    <ion-item ng-repeat="event in events">
13
	      	<div class="row browseproperties">
14
	      		<span class="col"><time class="timeago" datetime="{{event.time}}">{{toTimestamp(event.time)}}</time></span>
15
		        <span class="col">{{event.category}}</span>
16
		        <span class="col">{{event.action}}</span>
17
		        <span class="col">{{event.label}}</span>
18
		        <span class="col"><i class="indicator ion-ios-arrow-right"></i></span>		        
19
		    </div>
20
		    <div class="allproperties hidden">
21
		    	<div class="row" ng-repeat="(key,property) in event.properties">
22
		    		<span class="col col50 calm">{{key}}</span>
23
		    		<span class="col col50">{{property}}</span>
24
		    	</div>
25
		    </div>
26
     	 </ion-item>
27
	  </div>
28
<!--
29
	  <div class="item tabs tabs-secondary tabs-icon-left">
30
	    <a class="tab-item" href="#">
31
	      <i class="icon ion-thumbsup"></i>
32
	      Like
33
	    </a>
34
	    <a class="tab-item" href="#">
35
	      <i class="icon ion-chatbox"></i>
36
	      Comment
37
	    </a>
38
	    <a class="tab-item" href="#">
39
	      <i class="icon ion-share"></i>
40
	      Share
41
	    </a>
42
	  </div>
43
-->	  
44
  </ion-content>
45
</ion-view>