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
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
'Server > Django issue' 카테고리의 다른 글
[Django] Custom User (0) | 2022.08.05 |
---|---|
[Django] MySQL 테이블 전체 삭제 (0) | 2022.08.05 |
[Django] mysql 로그인 오류 해결방법 (0) | 2022.08.04 |
[Django] mysqlclient 설치 에러 해결 (0) | 2022.08.04 |
[Django] Git 초기화 & Github 연결 (0) | 2022.08.03 |