# HG changeset patch # User nishanth # Date 1277982857 -19800 # Node ID 08af9e4ada788d4b057599ae840df4b6ec4d760b # Parent 76971eed55c66e8a1d36682aca3b2c9bf11d1b54 modified the link in templates to the correct one and fixed a typo in view diff -r 76971eed55c6 -r 08af9e4ada78 event/views.py --- a/event/views.py Thu Jul 01 16:40:24 2010 +0530 +++ b/event/views.py Thu Jul 01 16:44:17 2010 +0530 @@ -215,7 +215,7 @@ try: q = QuestionBank.objects.get(id=qid) - except QuestionBank.DoesNotExitst: + except QuestionBank.DoesNotExist: raise Http404 diff -r 76971eed55c6 -r 08af9e4ada78 templates/list_questions.html --- a/templates/list_questions.html Thu Jul 01 16:40:24 2010 +0530 +++ b/templates/list_questions.html Thu Jul 01 16:44:17 2010 +0530 @@ -8,7 +8,7 @@ {% for question in questions %} -{{question.description}} + {{question.description}} {{question.topic_name}} {% endfor %}