{% extends 'layouts/app.html' %} {% import 'macros/form.html' as f with context %} {% import 'billing/macros/billing.html' as billing %} {% block title %}Purchase coins{% endblock %} {% block body %}
{% call f.form_tag('billing.purchase_coins', fid='payment_form') %} Purchase coins {% call f.form_group(form.coin_bundles, css_class='sm-margin-bottom') %} {% endcall %} {{ billing.payment_form(form, 'Process payment', True) }} {% endcall %}
{% endblock %}