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