django-paypal icon indicating copy to clipboard operation
django-paypal copied to clipboard

Support for price/option drop-down on Buy Now button

Open mikery opened this issue 13 years ago • 0 comments

Hi,

This adds support for displaying a drop-down with product/price options. The change is backwards compatible - if item_options is not set when initialising the Buy Now button form, the drop-down is not displayed.

item_options is a tuple of price/option_name pairs, e.g.:

fields = {'item_name': 'name',
    'item_options': (('10.00', 'Ten dollars'),
        ('20.00', 'Twenty dollars')
    ),
    ...
}

This change is not yet ready to commit (no docs/tests), but I would like to get some feedback on the idea/implementation. If it looks like it will get merged I will update the pull request with docs and tests.

mikery avatar Dec 20 '11 07:12 mikery