diff --git a/conservancy/usethesource/views.py b/conservancy/usethesource/views.py index 34bf684fc51502ba1a0e43d51a2d5fc1aeaebac1..0cdf0816be5da7bd859220fb0babd2427daa9578 100644 --- a/conservancy/usethesource/views.py +++ b/conservancy/usethesource/views.py @@ -46,7 +46,7 @@ def create_comment(request, slug): email = make_comment_email(comment) email.send() return redirect('usethesource:view_comment', comment_id=comment.id, show_add='true') - return render(request, 'usethesource/comment_form.html', {'form': form, 'candidate': candidate}) + return render(request, 'usethesource/add_comment_form.html', {'form': form, 'candidate': candidate}) @staff_member_required