What replaced is_ajax() is django 4

2022-02-23 Thread Jet Ezra
Hello team. Am sending jquery requests in django 4 but I have just realised that checking if the requests were from jquery using is_ajax and then perform ajax related actions is not possible. What is replacing this, and why would such a cool feature be removed. Thanks -- You received this

Re: Email verification

2022-02-23 Thread Sebastian Jung
Hey, a tutorial you find here: How to Signup User and Send Verification Email in Django - Django Tutorial (studygyaan.com) Am Mi., 23. Feb. 2022 um 16:34 Uhr schrieb Rushikesh Chavan <

Re: Email verification

2022-02-23 Thread Sangeeth Joseph
you can use django allauth. just pip install django allauth https://django-allauth.readthedocs.io/en/latest/installation.html On Wed, Feb 23, 2022 at 9:50 PM Abubakar Siddique wrote: > You can use djoser > > > > On Wed, Feb 23, 2022, 8:35 PM Rushikesh Chavan > wrote: > >> I am new to django,

Re: Email verification

2022-02-23 Thread Abubakar Siddique
You can use djoser On Wed, Feb 23, 2022, 8:35 PM Rushikesh Chavan wrote: > I am new to django, i am working on one project which requires a feature > of email verification , how do I do it? Like , I want to send the email to > the user who registered on my site and give one link in this mail

Re: Email verification

2022-02-23 Thread Antonis Christofides
You can try django-registration-redux . Regards, Antonis On 23/02/2022 17.10, Rushikesh Chavan wrote: I am new to django, i am working on one project which requires a feature of email verification  , how do I do it? Like , I want

Clue Querying Objects

2022-02-23 Thread Hansel Johansyah
Dear Django users Can you guys give me some clue, for Querying objects. In the database I was input a price list, and when the client side fill the form and search. The django will display a result price with formulas, ex: formula = 1.8% (by the price) * rate(1000%) Need your advice. Thank's

Email verification

2022-02-23 Thread Rushikesh Chavan
I am new to django, i am working on one project which requires a feature of email verification , how do I do it? Like , I want to send the email to the user who registered on my site and give one link in this mail which will verify the user -- You received this message because you are

Re: Need help in User log in, someone please help

2022-02-23 Thread Raj
Hi, Thanks for the response, I have tried to print the username before creating the user, but it did not work. I have also tried to use pdb that also didn't work. How to do it can give proper instructions?? I have searched about it on google but have not received any relevant answer. On

Re: Needs help

2022-02-23 Thread Steven Mapes
If you mean how can you take an image of something and turn it into a working design for a LEGO build then you need to look into tools that can convert 2D or better, 3D captures into lego designs if such sites/code exists. It certainly won't be in Django, but then you can build a Django site

Re: Need help in User log in, someone please help

2022-02-23 Thread waqar khan
share screen shot On Wed, Feb 23, 2022 at 12:24 PM Antonis Christofides < anto...@antonischristofides.com> wrote: > You have this statement: > user = User.objects.create_user(username=username, email=email, > password = password) > > Just before this statement, you need to insert a statement

how to use migrations in runtime for models creation?

2022-02-23 Thread Prashanth Patelc
hey , im working on dynamic models , im receiving model name and fields in front-end eg: class Users(models.Model): name=models.Charfield(max_length=30) last_name=models.Charfield(max_length=30) ,,, after this i dont need to save into the models.py i need to store the

Re: profile page and new user will not save

2022-02-23 Thread Omkar Parab
Something went wrong with the signals. Paste your signals.py file. On Wed, Feb 23, 2022, 10:52 AM 'Delvin Alexander' via Django users < django-users@googlegroups.com> wrote: > Hello Everyone, > > I am having trouble saving a new profile, and user when they are created. > Upon creating a new user