Django include default user registration, forgot password, OTP feature by default with Django libraries

2019-03-13 Thread parocks
I have been working with Django for small clients. One of the feature I would really love to have is 1. Default User Registration feature (without having to fiddle with things like the admin portal) 2. Forgot password feature 3. OTP for all user registrations by default Those three are the miss

Django 2.1 default of samesite=Lax for Session and CSRF cookies cause issues on Safari 12

2019-03-13 Thread Flávio Junior
Hi folks, after upgrading to Django 2.1, we noticed many occurrences of 403 CSRF errors for Safari 12 users. After days debugging the problem, we've pinpointed the issue to the Webkit Bug 188165: https://bugs.webkit.org/show_bug.cgi?id=188165 In simple terms, Safari 12 implementation of samesite

Re: Django include default user registration, forgot password, OTP feature by default with Django libraries

2019-03-13 Thread Jani Tiainen
Hi. ke 13. maalisk. 2019 klo 18.19 parocks kirjoitti: > I have been working with Django for small clients. > One of the feature I would really love to have is > 1. Default User Registration feature (without having to fiddle with things > like the admin portal) > Registration is not a simple thi

GSOC 19 PROPOSAL IDEA

2019-03-13 Thread Chinmay Relkar
Hi, My name is Chinmay Relkar. I'm a final year undergrad from India. This is about my GSOC proposal idea. While playing with django, I've always come across the absence of bidirectional ManyToMany feature ticketed at *code.djangoproject.com/ticket/897

Re: Support for unittest -k option

2019-03-13 Thread Luke Plant
I use `--keepdb` a lot, I never knew there was a shorthand and even know I do know wouldn't use it. For things like this I usually find it easy to remember the long option. So I'm +1 on changing it too, without a new shorthand for `--keepdb`. In the keyword usage

Re: Development story for CBV FormViews using GET

2019-03-13 Thread Luke Plant
Hi Kyle, My take would be this: What does the code look like if you don't use FormView but just write a function view? How does that compare to using a CBV? This may be the simpler method you are missing - if you are finding you are fighting with inherited functiona