How insert 2 different forms on the same page in Django

前端 未结 6 1847
醉话见心
醉话见心 2021-01-03 04:30

I have to insert 2 forms in the same page:

1) Registration form

2) Login form

.

So if I use this in the views.py:

    if requ         


        
6条回答
  •  攒了一身酷
    2021-01-03 05:04

     

    just Give different names to the buttons.

    if request.method == "POST" and 'edit' in request.POST:
     / Do /
    if request.method == "POST" and 'delete' in request.POST:
     /Do /
    

提交回复
热议问题