Re: Page Integration

2022-11-21 Thread Toshar Saini
https://medium.com/django-rest/django-rest-framework-login-and-register-user-fd91cf6029d5 Just visit on and read out On Fri, Nov 11, 2022 at 10:48 AM Pooja Kumari wrote: > I tried many ways but nothing works. > Sorry this code is messed up but hope you get some idea what I'm trying to > do. >

Re: Page Integration

2022-11-16 Thread Pooja Kumari
I'll check it out. Thanks On Wed, Nov 16, 2022, 7:03 PM parmeshwar deharkar < parmeshwardehar...@gmail.com> wrote: > https://pythonprogramming.net/user-login-logout-django-tutorial/ > > On Wed, Nov 16, 2022, 6:58 PM parmeshwar deharkar < > parmeshwardehar...@gmail.com> wrote: > >> Just visit

Re: Page Integration

2022-11-16 Thread parmeshwar deharkar
https://pythonprogramming.net/user-login-logout-django-tutorial/ On Wed, Nov 16, 2022, 6:58 PM parmeshwar deharkar < parmeshwardehar...@gmail.com> wrote: > Just visit on www.pythondjango.com > See that page registration access > > On Thu, Nov 10, 2022, 9:02 PM Pooja Kumari > wrote: > >> Hi..

Re: Page Integration

2022-11-16 Thread parmeshwar deharkar
Just visit on www.pythondjango.com See that page registration access On Thu, Nov 10, 2022, 9:02 PM Pooja Kumari wrote: > Hi.. Can anyone help me with django templates? Actually I have a > registration page where user can signup and data will be saved in admin > panel or database but I am not

Re: Page Integration

2022-11-15 Thread M Adnan
Join Django developer what's app group link below to discuss Django questions https://chat.whatsapp.com/ICXdXOrbgoNFQTbKxalZD1 On Fri, 11 Nov 2022, 12:07 am Pooja Kumari, wrote: > Where I have to use save() method? In models or somewhere else? > > On Thu, Nov 10, 2022, 9:19 PM Lakshyaraj

Re: Page Integration

2022-11-10 Thread Pooja Kumari
I tried many ways but nothing works. Sorry this code is messed up but hope you get some idea what I'm trying to do. In views.py @api_view(['GET', 'POST', ]) def signUpPage(request, format=None): #permission_classes = (IsAuthenticated,) #authentication_classes = (TokenAuthentication,)

Re: Page Integration

2022-11-10 Thread Mh Raffi
In views.py on that def On Fri, Nov 11, 2022, 12:37 AM Pooja Kumari wrote: > Where I have to use save() method? In models or somewhere else? > > On Thu, Nov 10, 2022, 9:19 PM Lakshyaraj Dash < > dashlakshyaraj2...@gmail.com> wrote: > >> Please see that if you're calling the .save() method or

Re: Page Integration

2022-11-10 Thread Chukwudi Onwusa
If you are using function based view in your views.py . After you must have equated the input values through the name attribute to the instance of the class in your model, then instance.save() before you redirect. This should be done in the views.py not models. On Thu, Nov 10, 2022, 20:07 Pooja

Re: Page Integration

2022-11-10 Thread Pooja Kumari
Where I have to use save() method? In models or somewhere else? On Thu, Nov 10, 2022, 9:19 PM Lakshyaraj Dash wrote: > Please see that if you're calling the .save() method or not > > On Thu, Nov 10, 2022, 21:02 Pooja Kumari wrote: > >> Hi.. Can anyone help me with django templates? Actually I

Re: Page Integration

2022-11-10 Thread amruth bitla
Ya easy and simple  On Thu, 10 Nov, 2022, 9:03 pm Pooja Kumari, wrote: > Hi.. Can anyone help me with django templates? Actually I have a > registration page where user can signup and data will be saved in admin > panel or database but I am not able to do that. Registration page is > working

Re: Page Integration

2022-11-10 Thread Desh Deepak
https://docs.djangoproject.com/en/4.1/topics/auth/default/ On Thu, Nov 10, 2022, 9:02 PM Pooja Kumari wrote: > Hi.. Can anyone help me with django templates? Actually I have a > registration page where user can signup and data will be saved in admin > panel or database but I am not able to do

Re: Page Integration

2022-11-10 Thread DJANGO DEVELOPER
you need to share the code.no one will be able to help you this way. On Thu, Nov 10, 2022 at 8:49 PM Lakshyaraj Dash < dashlakshyaraj2...@gmail.com> wrote: > Please see that if you're calling the .save() method or not > > On Thu, Nov 10, 2022, 21:02 Pooja Kumari wrote: > >> Hi.. Can anyone help

Re: Page Integration

2022-11-10 Thread Lakshyaraj Dash
Please see that if you're calling the .save() method or not On Thu, Nov 10, 2022, 21:02 Pooja Kumari wrote: > Hi.. Can anyone help me with django templates? Actually I have a > registration page where user can signup and data will be saved in admin > panel or database but I am not able to do