Re: I have one doubt

2021-04-30 Thread Yeddu Prasad
2021, 15:17 , wrote: > >> Hope you have the Installed_apps setup properly. >> >> >> >> >> >> *From:* django...@googlegroups.com *On >> Behalf Of *Bheemanagowda S Gowdra >> *Sent:* 30 April 2021 15:10 >> *To:* django...@googlegroups

Re: I have one doubt

2021-04-30 Thread Bheemanagowda S Gowdra
I had installed On Fri, 30 Apr, 2021, 15:17 , wrote: > Hope you have the Installed_apps setup properly. > > > > > > *From:* django-users@googlegroups.com *On > Behalf Of *Bheemanagowda S Gowdra > *Sent:* 30 April 2021 15:10 > *To:* django-users@googlegroups.c

RE: I have one doubt

2021-04-30 Thread yeddu.j.prasad
Hope you have the Installed_apps setup properly. From: django-users@googlegroups.com On Behalf Of Bheemanagowda S Gowdra Sent: 30 April 2021 15:10 To: django-users@googlegroups.com Subject: Re: I have one doubt On Fri, 30 Apr, 2021, 15:07 Arpana Mehta, mailto:arpana11me

Re: I have one doubt

2021-04-30 Thread Arpana Mehta
Can you share the error stack in more detail? Or a screenshot? On Thu, 29 Apr 2021, 19:53 Bheemanagowda S Gowdra, wrote: > I am knew to Django > > I am getting below warning > > unresolved import 'django.contrib' > > -- > You received this message because you are subscribed to the Google Groups

I have one doubt

2021-04-29 Thread Bheemanagowda S Gowdra
I am knew to Django I am getting below warning unresolved import 'django.contrib' -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@go

Re: hello django users, I have one doubt. I am doing one django project. It shows one SyntaxError in the line(if not created:) in views.py file.I attached the particular in that. I want the reason o

2010-06-05 Thread kanniga sivasubramanian
hello Karen Tracey sir, Thank you for your acknowledgement.I was corrected the problem. On Fri, Jun 4, 2010 at 6:31 PM, Karen Tracey wrote: > On Fri, Jun 4, 2010 at 7:54 AM, kanniga sivasubramanian > wrote: >> >> If not created: > > Don't uppercase the I in if. > > Karen > -- > ht

Re: hello django users, I have one doubt. I am doing one django project. It shows one SyntaxError in the line(if not created:) in views.py file.I attached the particular in that. I want the reason o

2010-06-04 Thread Karen Tracey
On Fri, Jun 4, 2010 at 7:54 AM, kanniga sivasubramanian < kskanniga...@gmail.com> wrote: > If not created: > Don't uppercase the I in if. Karen -- http://tracey.org/kmt/ -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group,

Re: hello django users, I have one doubt. I am doing one django project. It shows one SyntaxError in the line(if not created:) in views.py file.I attached the particular in that. I want the reason o

2010-06-04 Thread kanniga sivasubramanian
hello Venkatraman sir, I accept your suggestion. I will send only my questions in body. Thankyou for your acknowledgement. On Fri, Jun 4, 2010 at 5:36 PM, Venkatraman S wrote: > Please do not send the email in teh subject line :) > > -- > You received this message because you are sub

Re: hello django users, I have one doubt. I am doing one django project. It shows one SyntaxError in the line(if not created:) in views.py file.I attached the particular in that. I want the reason o

2010-06-04 Thread kanniga sivasubramanian
hello Vinicius Mendes sir, You are right. I had done the certain mistake only. I corrected that. Thankyou for your acknowledgement. On Fri, Jun 4, 2010 at 5:36 PM, Vinicius Mendes wrote: > I guess it is because the 'I' is uppercase. Try all the line in lowercase. > Atenciosamente, > Vinic

Re: hello django users, I have one doubt. I am doing one django project. It shows one SyntaxError in the line(if not created:) in views.py file.I attached the particular in that. I want the reason o

2010-06-04 Thread Vinicius Mendes
I guess it is because the 'I' is uppercase. Try all the line in lowercase. Atenciosamente, Vinicius Mendes Solucione Sistemas vinic...@solucione.info On Fri, Jun 4, 2010 at 8:54 AM, kanniga sivasubramanian < kskanniga...@gmail.com> wrote: > def bookmark_save_page(request): > if request.method

Re: hello django users, I have one doubt. I am doing one django project. It shows one SyntaxError in the line(if not created:) in views.py file.I attached the particular in that. I want the reason o

2010-06-04 Thread Venkatraman S
Please do not send the email in teh subject line :) -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googl

Re: hello django users, I have one doubt. I am doing one django project. It shows one SyntaxError in the line(if not created:) in views.py file.I attached the particular in that. I want the reason o

2010-06-04 Thread kanniga sivasubramanian
Thank for your(Dj Gilcrease) answer sir. I got the correct answer for the problem. On Fri, Jun 4, 2010 at 5:28 PM, Dj Gilcrease wrote: > syntax error is because of capitol 'I' in if > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To po

Re: hello django users, I have one doubt. I am doing one django project. It shows one SyntaxError in the line(if not created:) in views.py file.I attached the particular in that. I want the reason o

2010-06-04 Thread Dj Gilcrease
syntax error is because of capitol 'I' in if -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups

hello django users, I have one doubt. I am doing one django project. It shows one SyntaxError in the line(if not created:) in views.py file.I attached the particular in that. I want the reason of my

2010-06-04 Thread kanniga sivasubramanian
def bookmark_save_page(request): if request.method == 'POST': form = BookmarkSaveForm(request.POST) if form.is_valid(): # Create or get link. link, dummy = Link.objects.get_or_create( url=form.cleaned_data['url'] ) # Create or get bookmark. bookmark, c