Server/Django issue

[Django] User model 확장

개발자킹콩 2022. 8. 4. 15:03

 

 

 

Reference

https://yonghyunlee.gitlab.io/python/user-extend/

 

django login 유저 확장 방법 - 김땡땡's blog

장고의 auth 기능은 User 객체를 제공한다. 우리는 기본 default로 이 User 객체로 여러 인증을 구현할 수 있다. User model User model의 기본적으로 있는 여러 필드들이 있다. username 필수사항이다. 150자 이

yonghyunlee.gitlab.io

 

https://github.com/dev-yakuza/django_custom_user_model

 

GitHub - dev-yakuza/django_custom_user_model

Contribute to dev-yakuza/django_custom_user_model development by creating an account on GitHub.

github.com

https://blaize.tistory.com/89

 

Django User model Custom

AbstractUser (사용자 정의 사용자 모델 대체) 일부 프로젝트에는 Django의 내장 사용자 모델이 항상 적절하지 않은 인증 요구 사항이 있을 수 있다. 예를 들어 일부 사이트에서는 사용자 이름 대신 이

blaize.tistory.com

 

https://dev-yakuza.posstree.com/ko/django/custom-user-model/

 

장고(django)의 커스텀 유저 모델(Custom User Model)

장고(django) 프로젝트에서 사용되는 유저 모델(User Model)을 입맛에 맞게(Customization) 수정하여 사용해 봅시다.

dev-yakuza.posstree.com

https://wayhome25.github.io/django/2017/05/18/django-auth/

 

사용자 인증 (django.contrib.auth) · 초보몽키의 개발공부로그

AskDjango 수업을 듣고 중요한 내용을 정리하였습니다.

wayhome25.github.io

https://letalearns.tistory.com/38

 

django | User 모델을 이용한 Signup, User 확장

account/views.py from django.shortcuts import render, redirect from django.contrib.auth.forms import AuthenticationForm, UserCreationForm from django.contrib import auth def signup_view(request): if..

letalearns.tistory.com