Re: i am trying to learn django from django documentation but i am getting an error message in the first part of the documentation

2021-07-04 Thread Lalit Suthar
rewrite polls/urls.py like below path(''", views.index, name='index'), On Fri, 25 Jun 2021 at 18:59, Symaxx wrote: > I started learning Django from the documentation but it was very hard for > me and it took me a very long time to grasp the concept > > I suggest you try using books by w.s

Re: i am trying to learn django from django documentation but i am getting an error message in the first part of the documentation

2021-06-25 Thread Symaxx
I started learning Django from the documentation but it was very hard for me and it took me a very long time to grasp the concept I suggest you try using books by w.s vincent http://wsvincent.com/books/ these are the best for me and them help you stay engaged On Wed, Jun 23, 2021 at 5:19 PM

i am trying to learn django from django documentation but i am getting an error message in the first part of the documentation

2021-06-23 Thread vatsal narula
Using the URLconf defined in blogs.urls, Django tried these URL patterns, in this order: admin/ The current path, polls/, didn’t match any of these. this is the error i am getting after i wrote the following code: 1. for urls.py from django.contrib import admin from django.urls