mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-07-16 17:02:18 +00:00
fix jade vs angular
This commit is contained in:
parent
f6aefa5cf4
commit
1da26acc93
2 changed files with 4 additions and 4 deletions
|
|
@ -138,12 +138,12 @@ script(type='text/ng-template', id='partials/options.settings.coupon.html')
|
|||
.container-fluid
|
||||
.row
|
||||
.col-md-6
|
||||
h2 {{env.t('coupon')}}
|
||||
h2= env.t('coupon')
|
||||
form.form-inline(role='form',ng-submit='enterCoupon(_couponCode)')
|
||||
input.form-control(type='text', ng-model='_couponCode', placeholder=env.t('couponPlaceholder'))
|
||||
button.btn.btn-primary(type='submit') Submit
|
||||
div
|
||||
small {{env.t('couponText')}}
|
||||
small= env.t('couponText')
|
||||
div(ng-if='user.contributor.sudo')
|
||||
hr
|
||||
h4 Generate Codes
|
||||
|
|
@ -247,7 +247,7 @@ script(id='partials/options.settings.subscription.html',type='text/ng-template')
|
|||
.container-fluid(ng-init='_subscription={key:"basic_earned"}')
|
||||
.row
|
||||
.col-md-6
|
||||
h3 {{env.t('benefits')}}
|
||||
h3= env.t('benefits')
|
||||
+subPerks()
|
||||
|
||||
.col-md-6
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
script(id='partials/options.social.party.quest-rewards.html', type='text/ng-template')
|
||||
hr
|
||||
h5= {{header}}
|
||||
h5 {{header}}
|
||||
table.table.table-striped
|
||||
tr(ng-repeat='drop in quest.drop.items')
|
||||
td {{drop.text()}}
|
||||
|
|
|
|||
Loading…
Reference in a new issue