coupon field is shown if query string scf is shown

This commit is contained in:
Henry Oswald 2014-12-28 17:51:36 +00:00
parent 7f979e77db
commit baa0a42825
2 changed files with 4 additions and 3 deletions

View file

@ -61,6 +61,7 @@ module.exports = SubscriptionController =
recurlyConfig: JSON.stringify
currency: currency
subdomain: Settings.apis.recurly.subdomain
showCouponField:req.query.scf
subscriptionFormOptions: JSON.stringify
acceptedCards: ['discover', 'mastercard', 'visa']
target : "#subscribeForm"

View file

@ -130,9 +130,9 @@ block content
select.form-control(data-recurly="country", ng-model="data.country", required)
mixin countries_options()
.form-group
label #{translate("coupon")}
input.form-control(type='text', ng-blur="applyCoupon()", ng-model="data.coupon")
if showCouponField == 'true'
.form-group
input.form-control(type='text', ng-blur="applyCoupon()", ng-model="data.coupon", placeholder="#{translate('coupon')}")
.form-group
button.btn.btn-success(ng-click="submit()", ng-disabled="processing") #{translate("submit")}