Subversion Repositories SmartDukaan

Rev

Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

<ion-view view-title="{{user.name}}">
  <ion-content>
    <div class="item item-avatar">
            <img src="{{user.profile_pic}}">
            <h2>{{user.name}} ({{user.id}})</h2>
            <p>{{user.email}}</p>
            <p>{{user.mobilenumber}}</p>
            <p>{{user.referral_code}}</p>
          </div>

          <div class="item item-body">
            <ion-item ng-repeat="event in events">
                <div class="row browseproperties">
                        <span class="col"><time class="timeago" datetime="{{event.time}}">{{toTimestamp(event.time)}}</time></span>
                        <span class="col">{{event.category}}</span>
                        <span class="col">{{event.action}}</span>
                        <span class="col">{{event.label}}</span>
                        <span class="col"><i class="indicator ion-ios-arrow-right"></i></span>                  
                    </div>
                    <div class="allproperties hidden">
                        <div class="row" ng-repeat="(key,property) in event.properties">
                                <span class="col col50 calm">{{key}}</span>
                                <span class="col col50">{{property}}</span>
                        </div>
                    </div>
         </ion-item>
          </div>
<!--
          <div class="item tabs tabs-secondary tabs-icon-left">
            <a class="tab-item" href="#">
              <i class="icon ion-thumbsup"></i>
              Like
            </a>
            <a class="tab-item" href="#">
              <i class="icon ion-chatbox"></i>
              Comment
            </a>
            <a class="tab-item" href="#">
              <i class="icon ion-share"></i>
              Share
            </a>
          </div>
-->       
  </ion-content>
</ion-view>