본문 바로가기

Web

django 로그인 함수

django 프레임워크를 사용할때, 레퍼런스를 잘 봐야 할 것같다.

일단 사용하는 eclipse에서 intellisense(?)가 잘 안되서.. 인자에 대한 속성을 한눈에 판단하기가 어려워서...


일단 django.contrib.auth.views 에 login 함수



def login(request, template_name='registration/login.html',

          redirect_field_name=REDIRECT_FIELD_NAME,

          authentication_form=AuthenticationForm,

          current_app=None, extra_context=None):

    """

    Displays the login form and handles the login action.

    """