How insert 2 different forms on the same page in Django

前端 未结 6 1961
醉话见心
醉话见心 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:12

    You can also do like this,

     
    {{form1.as_p}}
    {{form2.as_p}}

    CODE

    if request.method=='POST' and 'btnform1' in request.POST:
        do something...
    if request.method=='POST' and 'btnform2' in request.POST:
        do something...
    

提交回复
热议问题