Hello! Access to the site is strictly through login and password. The question is if there is url / search, / test1, / test2, etc. so that there is no unauthorized access every time use if request.user.is_authenticated () to check the url?
def search(request): if request.user.is_authenticated(): ....... def tes1(request): if request.user.is_authenticated(): .......
etc.