Django Custom User Model | Extend User Fields | Django ORM Mastery

preview_player
Показать описание
This tutorial teaches how to extend the Django User Model by adding additional fields with a 1to1 table. I will show you how to create the table, work with the data in the Django Admin Site, and create a form for logged-in users. The Django 4. x ORM course provides learners with a complete overview of the Django Framework ORM (Object-relational mapping) through applied learning. In this course, you’ll learn about Django ORM and SQL features. By better understanding the features of the Django ORM, you will learn how to interact with databases from within a Django project, as you would with SQL. You will also learn how to administrate tables and perform common Create, Return, Update and Delete (CRUD) operations through the Django ORM.

Udemy Course Link: Django 4.x ORM Mastery
===================

YouTube Playlist
===================

GitHub Code Repository - Extend User Model
===================
Рекомендации по теме
Комментарии
Автор

Zander is a wizard. This dude's tutorial are some the best I've come across

anthonynarine
Автор

Thank you zander, I'm almost learning anything about Django from your channel and your videos!

mohammadqz
Автор

I admire your work and dedication to taking the time to introduce learners to the concept before coding. I like that I learn a lot from your channel. great work

chrisgathuthi
Автор

You're absolutely insane with quality

Filipkasic
Автор

Hello there, in this user models when I try to add images and update profile its not working... plz answer me

suzanshah
Автор

I am trying to do a registration form that saves simultaneous User and UserProfile. i have the exact same problem as 23:46. i can't seem to figure it out.

victoreu
Автор

i admire, but it is too much at one time. you wanted to show us how to extend a User field, but you show how to change the admin website, you could just split the
And wath is the idee of watching yours videos , if you says ( " just watch tutorials to understand this maybe on google ") ???? I apreciate, but could be

JuniorWog
Автор

Are you sure about this import?
from django.contrib.auth.admin import User

There it no User class in django.contrib.auth.admin. Only GroupAdmin and UserAdmin.
We can import
from django.contrib.auth.models import User

vasyabilich