Skip to content

Commit

Permalink
Updating coupon edit
Browse files Browse the repository at this point in the history
  • Loading branch information
pdt256 committed Dec 19, 2016
1 parent 614d878 commit 88a6842
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions themes/bootstrap/templates/admin/coupon/edit.twig
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,36 @@
required=""/>
</div>
</div>
<div class="row form-group">
<label for="coupon-flagFreeShipping" class="control-label col-sm-3">
Flag Free Shipping
</label>
{{ form.checkbox(
'coupon[flagFreeShipping]',
coupon.flagFreeShipping,
'coupon-flagFreeShipping'
) }}
</div>
<div class="row form-group">
<label for="coupon-reducesTaxSubtotal" class="control-label col-sm-3">
Reduces Tax Subtotal
</label>
{{ form.checkbox(
'coupon[reducesTaxSubtotal]',
coupon.reducesTaxSubtotal,
'coupon-reducesTaxSubtotal'
) }}
</div>
<div class="row form-group">
<label for="coupon-canCombineWithOtherCoupons" class="control-label col-sm-3">
Can Combine With Other Coupons
</label>
{{ form.checkbox(
'coupon[canCombineWithOtherCoupons]',
coupon.canCombineWithOtherCoupons,
'coupon-canCombineWithOtherCoupons'
) }}
</div>
<div class="row form-group">
<label class="control-label col-sm-3" for="coupon-start">Start</label>
<div class="date datetimepicker col-sm-3">
Expand Down

0 comments on commit 88a6842

Please sign in to comment.