7c5bd526b1
* make comment more accurate: members are removed, not banned They can rejoin with an invitation in a private group or at any time in a public group. * change windows line breaks to unix line breaks * change flavour text of Golden Knight collection quest to reduce number of testimonies * fix grammatical error noticed by mandyzhou * improve message about not being able to send PMs because we often see people report it as a bug * update instructions for cancelling Google subscriptions (thanks to Scea for noticing) * change Delete Completed on-hover message - fixes #8598 * correct the Orb of Rebirth's text about pets and mounts (they are not locked)
22 lines
1.1 KiB
Plaintext
22 lines
1.1 KiB
Plaintext
script(type='text/ng-template', id='partials/options.settings.promo.html')
|
|
.container-fluid
|
|
.row
|
|
.col-md-6
|
|
h2=env.t('promoCode')
|
|
form.form-inline(role='form',ng-submit='enterCoupon(_couponCode)')
|
|
input.form-control(type='text', ng-model='_couponCode', placeholder=env.t('promoPlaceholder'))
|
|
button.btn.btn-primary(type='submit')= env.t('submit')
|
|
div
|
|
small= env.t('couponText')
|
|
div(ng-if='user.contributor.sudo')
|
|
hr
|
|
h4=env.t('generateCodes')
|
|
form.form(role='form',ng-submit='generateCodes(_codes)',ng-init='_codes={}')
|
|
.form-group
|
|
input.form-control(type='text',ng-model='_codes.event',placeholder="Event code (eg, 'wondercon')")
|
|
.form-group
|
|
input.form-control(type='number',ng-model='_codes.count',placeholder="Number of codes to generate (eg, 250)")
|
|
.form-group
|
|
button.btn.btn-primary(type='submit')=env.t('generate')
|
|
a.btn.btn-default(href='/api/v3/coupons?_id={{user._id}}&apiToken={{User.settings.auth.apiToken}}')=env.t('getCodes')
|