-@login_required
-def paypal_form(request):
- if request.POST:
- form = PaypalSubscriptionForm(data=request.POST)
- if form.is_valid():
- amount = form.cleaned_data['amount']
- try:
- approval_url = agreement_approval_url(amount)
- except PaypalError as e:
- return render(request, 'paypal/error_page.html', {'error': e.message})
- return HttpResponseRedirect(approval_url)
- else:
- form = PaypalSubscriptionForm()
- return render(request, 'paypal/form.html', {'form': form})
+def paypal_init(request, key):
+ schedule = get_object_or_404(Schedule, key=key)
+ schedule.method = 'paypal'
+ schedule.save(update_fields=['method'])
+ app = request.GET.get('app')
+ return redirect(agreement_approval_url(schedule.amount, schedule.key, app=app))