{% extends 'layouts/app.html' %} {% import 'macros/form.html' as f with context %} {% import 'billing/macros/billing.html' as billing %} {% set plan_name = request.args.get('plan', '') %} {% set is_create = request.endpoint.endswith('create') %} {% if is_create %} {% set title = _('Enter credit card') %} {% set endpoint = 'billing.create' %} {% set button = _('Process payment') %} {% else %} {% set title = _('Update credit card') %} {% set endpoint = 'billing.update_payment_method' %} {% set button = _('Update payment method') %} {% endif %} {% block title %}{{ title }}{% endblock %} {% block body %}