def has_commented(mentor, arg):
	user = User.get_by_id(int(arg))
	result = Comment.check({"entity_id": str(mentor.key().id()), "commentor_id": str(user.key().id())})

	if result > 0:
		return "hide-comment-box"
	else:
		return "show-comment-box"