If no form action is specifed then the form will submit to the url of the page it is on.
Django forms do not automatically generate the opening and closing <form> html tags so you have to wrap them in it yourself. For example:
<form action="" method="post">{% csrf_token %}
{{ form.as_p }}
</form>
Would submit the form to the current url using post. Are you trying something similar?
Regards,
Josh
> --
> You received this message because you are subscribed to the Google Groups "django-paypal" group.
> To view this discussion on the web visit https://groups.google.com/d/msg/django-paypal/-/TjA1IdXOHPAJ.
> To post to this group, send email to django...@googlegroups.com.
> To unsubscribe from this group, send email to django-paypa...@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/django-paypal?hl=en.