Re: help on autologging users after signup

2021-05-25 Thread lalit suthar
It is not returning the "login success" message because you are using `APIView` parent class and that does not have create() method so your code inside create() won't get executed. You have to move that code to post() method. https://www.cdrf.co/ is a good reference to find out different Parent

Re: How HttpResponseRedirect works

2021-05-25 Thread Boris Pérez
Hi!!! usually HttpResponseRedirects work with reverse function...something like this def myview(request): return HttpResponseRedirect(reverse('arch-summary', args=[1945])) where 'arch-summary' is the path name and args=[1945] the args it expects... You need to modify also your urls.py to add ty

Re: Making a rather small web app, is Django right for it?

2021-05-25 Thread Gabriel Araya Garcia
Davin: It will be a pleasure to collaborate for deaf and blind of the world. If you want, tell me what can I do about your Django project. Excuse me, but my english is not well Regards. Gabriel Araya Garcia GMI - Desarrollo de Sistemas Informáticos Santiago de Chile El mar, 25 may 2021 a las 9:

Re: Making a rather small web app, is Django right for it?

2021-05-25 Thread Arthur Obo Nwakaji
Then you can go with Django then. On Tue, 25 May 2021, 2:12 PM Devin Prater It's more of a nice-to-have for work. But yeah, it'll not be a very large > project. > > Devin Prater > > Technical Assistant > > > 256 761-3423 > > [image: Alabama Institute for Deaf and Blind] > > P.O. Box 698 | 1105 Fo

How HttpResponseRedirect works

2021-05-25 Thread Bhanu prasad Ch
Hello everyone, Please help me out in understanding how to pass the redirected view with some arguments like userid to connect the URLs in Django [image: Screenshot_2.png][image: Screenshot_3.png] When I am doing this way it is redirecting to the self page that is login. But I need the Htt

Re: Making a rather small web app, is Django right for it?

2021-05-25 Thread Arthur Obo Nwakaji
So right, flask is easier and help you get job done faster. But if you want to build a more scalable application for an enterprise Django is your friend. On Tue, 25 May 2021, 6:55 AM Antonis Christofides < anto...@antonischristofides.com wrote: > It's hard to say. While Django *is* suitable, it's

Re: Making a rather small web app, is Django right for it?

2021-05-25 Thread Devin Prater
It's more of a nice-to-have for work. But yeah, it'll not be a very large project. Devin Prater Technical Assistant 256 761-3423 [image: Alabama Institute for Deaf and Blind] P.O. Box 698 | 1105 Fort Lashley Ave. Talladega, AL 35161 www.aidb.org [image: Facebook] Discover how we’re limitles

Re: Best way to deal with members registration in Django apps

2021-05-25 Thread Kelvin Sajere
If your app just sends email upon registration or just configured to send mail generally and you would like to use an email with your production domain like in a production setting, then you only need to change the email configuration in your settings.py file to reflect your domain email. For examp