Re: Django newbie, URL resloving problem

2007-11-04 Thread gizmo
> Hope the above helps too. Hello both of you. All your suggestions were great and solved my problem. Thank's a lot . Melita --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this

Re: Django newbie, URL resloving problem

2007-11-01 Thread RajeshD
On Nov 1, 7:26 am, gizmo <[EMAIL PROTECTED]> wrote: > Hello, > I started learning about Django and I followed an example > athttp://www.djangobook.com/en/beta/chapter03/ > > I've done: > from django.conf.urls.defaults import * > from gizmo_site.datetime import current_datetime This suggests th

Re: Django newbie, URL resloving problem

2007-11-01 Thread eXt
On 1 Lis, 12:26, gizmo <[EMAIL PROTECTED]> wrote: > Hello, > I started learning about Django and I followed an example > athttp://www.djangobook.com/en/beta/chapter03/ > > I've done: > from django.conf.urls.defaults import * > from gizmo_site.datetime import current_datetime > > urlpatterns = > p

Django newbie, URL resloving problem

2007-11-01 Thread gizmo
Hello, I started learning about Django and I followed an example at http://www.djangobook.com/en/beta/chapter03/ I've done: from django.conf.urls.defaults import * from gizmo_site.datetime import current_datetime urlpatterns = patterns('', (r'^\now$', current_datetime), ) When I tri