mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-24 08:08:15 -05:00
30 lines
No EOL
1.1 KiB
Text
30 lines
No EOL
1.1 KiB
Text
.modal-dialog
|
|
.modal-content
|
|
if state === 'purchasing'
|
|
.alert.alert-info(data-i18n="buy_gems.purchasing")
|
|
|
|
else if state === 'retrying'
|
|
#retrying-alert.alert.alert-danger(data-i18n="buy_gems.retrying")
|
|
|
|
else
|
|
img(src="/images/pages/play/modal/buy-gems-background.png")#buy-gems-background
|
|
|
|
#products
|
|
for product in products
|
|
.product
|
|
h4 x#{product.gems}
|
|
h3(data-i18n=product.i18n)
|
|
button.btn.btn-illustrated.btn-lg(value=product.id)
|
|
span= product.price
|
|
|
|
if state === 'declined'
|
|
#declined-alert.alert.alert-danger.alert-dismissible
|
|
span(data-i18n="buy_gems.declined")
|
|
button.close(type="button" data-dismiss="alert")
|
|
span(aria-hidden="true") ×
|
|
|
|
if state === 'unknown_error'
|
|
#error-alert.alert.alert-danger.alert-dismissible
|
|
span(data-i18n="loading_error.unknown")
|
|
button.close(type="button" data-dismiss="alert")
|
|
span(aria-hidden="true") × |