https://docs.djangoproject.com/en/3.0/ref/contrib/auth/#django.contrib.auth.models.User.is_active
request.user.is_active : 사용자 활성여부. False라면 인증자체가 안된다. 이 속성이 존재하는 이유는 Foreign key때문이다.
즉 user를 hard delete하지 말고 이 속성을 사용해서 soft delete하란 의미다.

https://docs.djangoproject.com/en/3.0/ref/contrib/auth/#django.contrib.auth.models.User.is_authenticated
request.user.is_authenticated : 인증이 여부, 일반적으로 화면에서 이 속성으로 인증여부 확인하면 된다.