Contents 1. 배경 장고에서는 다양한 방법으로 로그인한 유저만 허용하도록 할 수 있습니다. 예를 들어, 커뮤니티 웹사이트에서 글 목록까진 볼 수 있지만, 글을 보려면 로그인해야 볼 수 있게 할 수 있습니다. 이는 장고의 View단에서 구현됩니다. 유저가 로그인했는지를 판단하는 3가지 방법을 알아보겠습니다. 2. 방법 1) request.user로 판단 def index(request: HttpRequest) -> HttpResponse: if not request.user.is_authenticated: return redirect("/accounts/login/") qs = Post.objects.all() return render(request, "blog/index.html", context..