Skip to content

Commit 1c6a332

Browse files
committed
Modify polls:results.html -> polls/results.html
1 parent 096aff7 commit 1c6a332

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

polls/views.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,4 @@ def vote(request, question_id):
3636

3737
def results(request, question_id):
3838
question = get_object_or_404(Question, pk=question_id)
39-
return render(request, 'polls:results.html', {'question': question})
39+
return render(request, 'polls/results.html', {'question': question})

0 commit comments

Comments
 (0)