thank you a lot for a quick response; I am sorry for posting traceback, and not actual error message. So here what it gives me:
Environment: Request Method: GET Request URL: http://127.0.0.1:8000/polls/1/results/ Django Version: 1.0-final-SVN-unknown Python Version: 2.5.2 Installed Applications: ['django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.sites', 'mysite.polls', 'django.contrib.admin'] Installed Middleware: ('django.middleware.common.CommonMiddleware', 'django.contrib.sessions.middleware.SessionMiddleware', 'django.contrib.auth.middleware.AuthenticationMiddleware') Traceback: File "/usr/lib/python2.5/site-packages/django/core/handlers/base.py" in get_response 86. response = callback(request, *callback_args, **callback_kwargs) Exception Type: TypeError at /polls/1/results/ Exception Value: results() got an unexpected keyword argument 'poll_id' On Oct 22, 11:57 pm, "Karen Tracey" <[EMAIL PROTECTED]> wrote: > On Wed, Oct 22, 2008 at 5:15 PM, gryzzly <[EMAIL PROTECTED]> wrote: > > > Hi, > > I was following tutorial from official docs step by step. > > > So on part 4, at writing and processing simple form I am stuck with > > something. (here — > >http://docs.djangoproject.com/en/dev/intro/tutorial04/#write-a-simple... > > ). > > > I am writing my results view and pointing at it from polls/urls.py. > > And I am getting 500 error. Whatever I write in results view. Now, if > > I point matching regex from urls.py to some other view, like "details" > > that I've created before that, then it works. > > > Here is the code: > > > polls/urls.py: > > > from django.conf.urls.defaults import * > > > urlpatterns = patterns('mysite.polls.views', > > (r'^$', 'index'), > > (r'^(?P<poll_id>\d+)/$', 'detail'), > > (r'^(?P<poll_id>\d+)/results/$', 'results'), > > (r'^(?P<poll_id>\d+)/vote/$', 'vote'), > > ) > > > relevant view from polls/views.py (and it doesn't really matter what > > do I write there, anyway I get 500 error): > > > def results(request, poll_id): > > p = get_object_or_404(Poll, pk=poll_id) > > return render_to_response('polls/results.html', {'poll': p}) > > > Here is an output of error message: > > > Traceback (most recent call last): > > > [shipped] > > File "/usr/lib/python2.5/site-packages/django/template/loader.py", > > line 73, in find_template_source > > raise TemplateDoesNotExist, name > > > TemplateDoesNotExist: 500.html > > > Please suggest what I could do. > > Well that traceback is not very helpful because it is just reporting that in > attempting to generate an error page the code ran across a 2nd error -- you > haven't created a 500.html template. You need one of these, just like the > 404.html template that the 3rd section of the tutorial mentions. > > However, neither of those templates is particularly helpful when debugging, > since they just present generic "not found" or "error" pages. For debugging > what's really going on you want to set DEBUG to True in your settings.py > file. Then when you go to the page that is causing the error, you will get > a traceback showing where the original error is occuring, which will make it > much easier to figure out what is going wrong. > > Karen --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---