Re: New to the community want to ask few things.

2022-02-24 Thread 'Adam Johnson' via Django developers (Contributions to Django itself)
Welcome! 1.So I did clone on my pycharm but in Git-hub repo its not visible . Why it > is so, Is the repo private for django? > I think you may be confused as to how GitHub and Pycharm interact. I would only refer you to their documentation. Both have plenty of beginner tutorials. > 2. As

Re: Request for comments, Issue #29208: "Mistake in the documentation, request.POST['username'] is not working, but request.POST.get('username') is working!"

2022-02-24 Thread 'Adam Johnson' via Django developers (Contributions to Django itself)
I agree with the status of the ticket. The login() example is only to show you how to use authenticate() and login(), it can ignore the details of request.POST validation, which you'd normally use a form for. On Thu, Feb 24, 2022 at 11:46 AM leonhar...@gmail.com < leonhard.kue...@gmail.com> wrote:

Request for comments, Issue #29208: "Mistake in the documentation, request.POST['username'] is not working, but request.POST.get('username') is working!"

2022-02-24 Thread leonhar...@gmail.com
Hello Everyone. Here is an Issue, that was marked as wontfix: https://code.djangoproject.com/ticket/29208 In my opinion, this is just a minor documentation problem. I did not expect it to be so controversial. But others disagreed. Thus I seek your attention to share your opinion. If the majority

Re: New to the community want to ask few things.

2022-02-24 Thread Richard Dushime
Hello @sarthak check in the folder or repository where you cloned to secondly after cloning does nt mean that you can start its better if you can read the full documentation you will get a hint on what to do next Hope it helps On Wednesday, February 23, 2022 at 11:30:46 PM UTC+3 sarthak...@gma

Re: Is_ajax replacement??

2022-02-24 Thread 'Adam Johnson' via Django developers (Contributions to Django itself)
The feature was deprecated in Django 3.1 - the release note covers alternatives: https://docs.djangoproject.com/en/3.1/releases/3.1/#id2 If you didn't detect this until Django 4.0 I would recommend reading the documentation on deprecation warnings so you can discover deprecations when they happen: