Re: urls.py

2009-09-14 Thread Ramanathan
I changed it to (r'^activate/(.+)/$','proj.register.views.activate') like Mark said and things worked out. I had been for hours looking at it. Finally got it .Thank you all. Regards, Ramanathan M --~--~-~--~~~---~--~~ You received this message because you

Re: urls.py

2009-09-14 Thread Ramanathan
I tried it.. but still it is not working. I am using django version 1.1. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To

urls.py

2009-09-13 Thread ramanathan
(r'^/(.+)/$','proj.register.views.activate') (r'^(?P.*)$', 'django.views.static.serve', {'document_root': '/home/ramanathan/media/'}) These are the two lines in my urls.py file.. If i give http://localhost:8000/90/it is matched as http://localhost:8000/media/90/ insetad of getting

send_mail function

2009-08-16 Thread ramanathan
HI In the message field i tried to include a link using href. send_mail("subject"," Click here ", 'a...@yahoo.co.in', ['a...@gmail.com'] ) But it is not working. How to include a link in the message field of send_mail function? Thanks &am

captcha

2009-07-29 Thread ramanathan
how to include captcha code in django ? Regards Ramanathan.M --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe

User.objects.create_user

2009-07-26 Thread ramanathan
I stored the username, password, email id fields in auth_user table using User.objects.create_user(username,email,password) But i was not able to store the first_name field.. I tried User.objects.create_user (username,first_name=firstname,email,password) But it didnt work out.. How to store

Template does not exist error

2008-12-25 Thread ramanathan
When i tried the url http://localhost:8000/admin/ i got a error of type Template does not exist... pls help me to overcome it... regards Ramanathan. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django