| 13542 |
anikendra |
1 |
<ion-view view-title="Dashboard">
|
|
|
2 |
<ion-content class="padding" style="top:50px;">
|
| 13551 |
anikendra |
3 |
<div class="row" ng-repeat="rows in chunkedData">
|
|
|
4 |
<div class="col" ng-repeat="product in rows">
|
|
|
5 |
<div class="list card">
|
|
|
6 |
<div class="product_image">
|
| 13557 |
anikendra |
7 |
<!--<img src="{{apihost}}app/webroot/timthumb.php?src={{product.StoreProduct.thumbnail}}&h=120" ng-click="viewproduct({{product.StoreProduct.id}})"> -->
|
|
|
8 |
<img class="productthumb" src="{{product.StoreProduct.thumbnail}}" ng-click="viewproduct({{product.StoreProduct.id}})">
|
| 13551 |
anikendra |
9 |
<ul class="product_actions">
|
| 13563 |
anikendra |
10 |
<li ng-click="likeProduct({{product.StoreProduct.id}},this)" ng-class="{iliked: liked[product.StoreProduct.id]}">
|
|
|
11 |
<button class="icon ion-heart"></button>
|
| 13551 |
anikendra |
12 |
</li>
|
| 13563 |
anikendra |
13 |
<li ng-click="unlikeProduct({{product.StoreProduct.id}},this)" ng-class="{disliked: disliked[product.StoreProduct.id]}">
|
|
|
14 |
<button class="icon ion-thumbsdown"></button>
|
|
|
15 |
</li>
|
| 13551 |
anikendra |
16 |
</ul>
|
|
|
17 |
</div>
|
| 13552 |
anikendra |
18 |
<p class="product_name" ng-click="viewproduct({{product.StoreProduct.id}})">{{product.StoreProduct.title}}</p>
|
| 13551 |
anikendra |
19 |
<p ng-show="{{product.StoreProduct[0].short_description}}" class="product_short_description">{{product.StoreProduct[0].short_description}}</p>
|
|
|
20 |
<p class="product_prices">
|
|
|
21 |
<span class="product_price"><img src="/img/rupee.png"/> {{product.StoreProduct.available_price}}</span>
|
|
|
22 |
<span class="product_cashback" ng-show="product.StoreProduct.cashback">(<img src="/img/rupee.png"/> {{product.StoreProduct.cashback}} Cashback)</span>
|
|
|
23 |
</p>
|
|
|
24 |
</div>
|
|
|
25 |
</div>
|
|
|
26 |
</div>
|
| 13542 |
anikendra |
27 |
<ion-infinite-scroll ng-if="moreDataCanBeLoaded()" on-infinite="loadmore()" distance="1%"></ion-infinite-scroll>
|
|
|
28 |
</ion-content>
|
| 13552 |
anikendra |
29 |
</ion-view>
|