1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-29 10:24:20 +01:00
fab-manager/app/frontend/templates/admin/pricing/coupons.html

49 lines
2.0 KiB
HTML
Raw Normal View History

<h2 translate>{{ 'app.admin.pricing.list_of_the_coupons' }}</h2>
2016-08-04 14:26:07 +02:00
2019-04-04 18:00:19 +02:00
<div class="m-t-lg m-b">
<button type="button" class="btn btn-warning" ui-sref="app.admin.coupons_new">
<i class="fa fa-plus m-r"></i>
<span translate>{{ 'app.admin.pricing.add_a_new_coupon' }}</span>
2019-04-04 18:00:19 +02:00
</button>
<div class="form-group pull-right">
<div class="input-group">
<span class="input-group-addon"><i class="fa fa-filter"></i></span>
<select ng-model="filter.coupon" class="form-control" ng-change="updateCouponFilter()">
<option ng-repeat="status in couponStatus" value="{{status}}" translate>{{ 'app.admin.pricing.'+status }}</option>
2019-04-04 18:00:19 +02:00
</select>
</div>
</div>
</div>
2016-08-04 14:26:07 +02:00
<table class="table">
<thead>
<tr>
<th translate>{{ 'app.admin.pricing.name' }}</th>
<th translate>{{ 'app.admin.pricing.discount' }}</th>
<th translate>{{ 'app.admin.pricing.nb_of_usages' }}</th>
<th translate>{{ 'app.admin.pricing.status' }}</th>
2016-08-04 14:26:07 +02:00
<th></th>
</tr>
</thead>
<tbody>
<tr ng-repeat="coupon in coupons">
<td>{{coupon.name}}</td>
<td>
<span ng-show="coupon.type == 'percent_off'">{{coupon.percent_off}} %</span>
<span ng-show="coupon.type == 'amount_off'">{{coupon.amount_off}} {{currencySymbol}}</span>
</td>
<td>{{coupon.usages}}</td>
<td translate>{{'app.admin.pricing.'+coupon.status}}</td>
2016-08-04 14:26:07 +02:00
<td>
2016-08-16 11:33:10 +02:00
<button type="button" class="btn btn-default" ng-click="sendCouponToUser(coupon)"><i class="fa fa-send-o"></i> </button>
2016-08-04 18:13:19 +02:00
<button type="button" class="btn btn-default" ui-sref="app.admin.coupons_edit({id:coupon.id})"><i class="fa fa-pencil-square-o"></i></button>
2016-08-04 14:26:07 +02:00
<button type="button" class="btn btn-danger" ng-click="deleteCoupon(coupons, coupon.id)"><i class="fa fa-trash"></i></button>
</td>
</tr>
</tbody>
2019-04-04 17:28:29 +02:00
</table>
<div class="text-center">
<button class="btn btn-warning" ng-click="loadMore()" ng-hide="coupons.length === 0 || coupons.length >= coupons[0].total"><i class="fa fa-search-plus" aria-hidden="true"></i> {{ 'app.admin.pricing.display_more_coupons' | translate }}</button>
2019-04-04 17:28:29 +02:00
</div>