質問がある場合-回答フォームが質問のテンプレートに含まれる回答システム(Facebookの投稿コメントのように)すべての質問のコメントを保存する別の方法はありますか? どうすれば質問のIDを取得できますか?
私のコード:
{%include "replies/replies.html"%} #thats in the template where questions are listed
save_question ビュー
def save_reply(request, id):
question = New.objects.get(pk = id)
if request.method == 'POST':
form = ReplyForm(request.POST)
if form.is_valid():
new_obj = form.save(commit=False)
new_obj.creator = request.user
u = New.objects.get(pk=id)
new_obj.reply_to = u
new_obj.save()
return HttpResponseRedirect('/accounts/private_profile/')
else:
form = ReplyForm()
return render_to_response('replies/replies.html', {
'form': form,
'question':question,
},
context_instance=RequestContext(request))
そしてフォーム:
<form action="." method="post">
<label for="reply"> Comment </label>
<input type="text" name="post" value="">
<p><input type="submit" value="Comment" /></p>
</form>
このフォームを質問テンプレートに「埋め込んで」機能させるにはどうすればよいですか? また、参照先の質問の ID を「知る」にはどうすればよいですか?
どうも