Re: my first view

2019-10-08 Thread Motaz Hejaze
Please follow the link in my last email On Tue, 8 Oct 2019, 5:05 pm Felipe Gregório USA, wrote: > how i do this? > > -- > 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

Re: my first view

2019-10-08 Thread Felipe Gregório USA
how i do this? -- 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...@googlegroups.com. To view this discussion on the web visit https://group

Re: my first view

2019-10-08 Thread Motaz Hejaze
nothing wrong , you just need to link your view with a route .. please go for the official django tutorial to understand the basics https://docs.djangoproject.com/en/2.2/intro/tutorial01/ On Tue, Oct 8, 2019 at 4:36 PM Felipe Gregório USA wrote: > Please tell me what is wrong with my fi

my first view

2019-10-08 Thread Felipe Gregório USA
Please tell me what is wrong with my first view https://github.com/Fgregorio1/ftgtraderexample.git -- 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 dj

Re: Writing my first view

2011-06-06 Thread bh.hoseini
i used "debug = False" in setting.py, that's why i couldn't see what the real error is because of the page appearance! thank you for your attention, On Jun 6, 5:31 am, Dave Sayer wrote: > Have you followed the whole of the tutorial? > On 6 Jun 2011 07:41, "bahare hoseini" wrote: > > > hi there,

Re: Writing my first view

2011-06-06 Thread Dave Sayer
Have you followed the whole of the tutorial? On 6 Jun 2011 07:41, "bahare hoseini" wrote: > hi there, > i use django vs1.3 > i started editing urls.py to look loke this: > > from django.conf.urls.defaults import * > > > > from django.contrib import admin > > admin.autodiscover() > > > > urlpattern

Writing my first view

2011-06-05 Thread bahare hoseini
hi there, i use django vs1.3 i started editing urls.py to look loke this: from django.conf.urls.defaults import * from django.contrib import admin admin.autodiscover() urlpatterns = patterns('', (r'^polls/$', 'polls.views.index'), (r'^polls/(?P\d+)/$', 'polls.views.detail'),