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

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: First View

2018-05-22 Thread Journal-Immo
Hello First : thanks for your Help. It's very easy, but I need 4 hours...to understand... don't panic :-! Have a good day Le 21/05/2018 à 23:55, Daniel Germano Travieso a écrit : Hello! As you configured, the available url patterns you have on your project are: "/admin/" and

Re: First View

2018-05-21 Thread Daniel Germano Travieso
Hello! As you configured, the available url patterns you have on your project are: "/admin/" and "/boutique/"... And as you request states, you are trying to access the path "/".. So django didn't find any matching url pattern for that. To access the view you are intended to access, you should

First View

2018-05-21 Thread Tristan Demot
Hello, I use tutorial 1.11 beaumarche (startproject) from django.conf.urls import include, url from django.contrib import admin urlpatterns = [ url(r'^boutique/', include('boutique.urls')) , url(r'^admin/', admin.site.urls), ] boutique (app) urls.py from django.conf.urls import

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"

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 > >

Writing my first view

2011-06-06 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'),

Re: New user having trouble with First View

2007-12-17 Thread newDjangoer
]> wrote: > newDjangoer wrote: > > Hello, > > > I am a new user to Django and developing apps at that. I ran the > > server successfully . Once I created the "First View" tutorial > > (datetime page17) in the book and changed the settings.py and urls.py, >

Re: New user having trouble with First View

2007-12-17 Thread Christian Joergensen
newDjangoer wrote: > Hello, > > I am a new user to Django and developing apps at that. I ran the > server successfully . Once I created the "First View" tutorial > (datetime page17) in the book and changed the settings.py and urls.py, > I get the followi

New user having trouble with First View

2007-12-17 Thread newDjangoer
Hello, I am a new user to Django and developing apps at that. I ran the server successfully . Once I created the "First View" tutorial (datetime page17) in the book and changed the settings.py and urls.py, I get the following: Request Method: GET Request URL:http://127.0.0.1:8000/

Re: error creating first view

2006-02-15 Thread Lachlan Cannon
Alan Bailey wrote: > ImportError at /unixgroups/34/ No module named group > > Here is urls.py: > from django.conf.urls.defaults import * > > urlpatterns = patterns('', > # Example: > # (r'^djaccounts/', include('djaccounts.apps.foo.urls.foo')), > > # Uncomment this for admin: >