私は c.html (http://localhost:8000/practice/c) にいて、URL を変更するリンクをクリックします。
http://localhost:8000/practice/c/?q=1
これはurls.pyです
url(r'^$', prac_c),
url(r'^q=\d',fetch_c),
これはviews.pyです
def prac_c(request):
return render_to_response('subject/c.html', {"problem_list":problem_list})
def fetch_c(request):
qno = request.GET.get('q')
if qno:
return render_to_response('subject/que.html', {'qno':qno}, context_instance=RequestContext(request))
しかし、que.html に誘導されません。urls.py に何か問題がありますか?