Hi,
has anybody implemented reCAPTCHA for Satchmo user registration? I am trying it with django-recaptcha:
https://github.com/praekelt/django-recaptcha
I would only need it for the url
url(r'^accounts/register/$', 'register', {'SSL': ssl}, name='registration_register')
but as I see it, satchmo_store.accounts.views.register() does not take a {"backend": captcha.backends.default.CaptchaDefaultBackend'} kwargs parameter. This is implemented in django-registration v0.8 register(), and the examples in django-recaptcha build upon that. I wonder if this is the right track anyways...
Any hints appreciated!
Ben