You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# views.py > 18, 19# 정답ifnotrequest.user.is_active:
returnHttpResponse("Can't wirte a post without Sign In")
# 오답ifrequest.user.is_active:
returnHttpResponse("Can't wirte a post without Sign In")
# views.py > 58, 76# 정답elifpost.writer!=request.user:
returnHttpResponse("자기가 쓴 글만 삭제할 수 있어용")
# 오답elifpost.writer==request.user:
returnHttpResponse("자기가 쓴 글만 삭제할 수 있어용")