Hi.. I am using django 0.97 pre with python 2.5.1. I have been trying to learn this but i am having trouble with forms. What I want is to submit data in one page and do calculations with it and return the result in other page. I managed to do it using cgi, but can anyone tell me how to get data in django? I should I use get_list_or_404()? I have my url conf as
from django.conf.urls.defaults import * from dbp.users.views import show, get_id, showall urlpatterns = patterns('', (r'^users/', showall),(r'^showuser/([A-Za-z]+)', show), ) The url on submitting is http://localhost:8000/showuser/?id_user=Ani I get a page not found error saying The current URL, showuser/, didn't match. please advice. Thanking you in advance --~--~---------~--~----~------------~-------~--~----~ 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 from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---