Answers for "check user authentication django"

0

django 3 check if user is logged in

from django.contrib.auth import authenticate, login
from django.contrib.auth.decorators import login_required




EXAMPLE 1 (USED IN VIEW CONTROLLER FUNCTIONS)
===========
@login_required
def profile_general(request):
    return render(request, 'pages/profile_general.html', {'datax': 'Directoreel'})


EXAMPLE 2 (USED IN VIEW CONTROLLER FUNCTIONS)
===========
def login_action(request):
    # login authentication
    if request.user.is_authenticated:
        return render(request, 'pages/dashboard.html', {'datax': 'Directoreel'})
    # back to login page
    else:
        pass
Posted by: Guest on February-14-2021
-1

get user django

def sample_view(request):
    current_user = request.user
    print current_user.id
Posted by: Guest on May-22-2020

Code answers related to "check user authentication django"

Python Answers by Framework

Browse Popular Code Answers by Language