mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2025-02-17 17:02:18 -05:00
15 lines
393 B
Text
15 lines
393 B
Text
|
extends /templates/modal/modal_base
|
||
|
|
||
|
block modal-header-content
|
||
|
h3(data-i18n='play.buy_gems')
|
||
|
|
||
|
block modal-body-content
|
||
|
for product in products
|
||
|
button.product.btn.btn-lg(value=product.id)
|
||
|
img.gem(src="/images/common/gem.png")
|
||
|
span x#{product.gems): #{product.price}
|
||
|
|
||
|
block modal-footer
|
||
|
.modal-footer
|
||
|
button(data-dismiss="modal", data-i18n="common.cancel").btn Cancel
|