I have a Django project that, on one page, has multiple forms (in different tags) that can be submitted to have different effects. In all cases I want the user to be redire
One thing to keep in mind to prevent confusion. The name of the submit button will not show if there is only a single button in the form.
name
#template.html #view.py ... 'first_button' in request.POST #False
#template.html #view.py ... 'first_button' in request.POST #True if you clicked on that button