▶️ Watch Entire Django Blog Playlist ✅ Subscribe To My KZbin Channel: bit.ly/3bWN6wj bit.ly/2IGzvOR ▶️ See More At: ✅ Join My Facebook Group: Codemy.com bit.ly/2GFmOBz ▶️ Learn to Code at Codemy.com ✅ Buy a Codemy T-Shirt! Take $30 off with coupon code: youtube1 bit.ly/2VC9WUN
@rahamanhabib13474 жыл бұрын
Best tutorial on python, django and the mentor also....i have learned a lot from you. More subscribers and likes are appreciated for him..
@Codemycom4 жыл бұрын
Wow thanks!
@MmKayUltra14 жыл бұрын
This is great just starting in django for about a week and wanted to overload a the basic authentication user model. this was the perfect speed for beginners as long as you have your files open in tabs in your IDE and your webpage already in browser.
@harshaldeshpande26334 жыл бұрын
What an awesome explaination. Deserve more views for sure.
@gabrilexrosario4 жыл бұрын
i always come to you when ever my site has bugs, you are awesome dude
@Codemycom4 жыл бұрын
awesome
@kelvinmacharia3715 Жыл бұрын
Greate tutorial, this works. However I think it we should create a separate app dedicated to users and put in a custom user model just to keep things a little entangled or unbundled for ease of scaling and updating.
@Codemycom Жыл бұрын
Whatever floats your boat
@shawnbeans73894 жыл бұрын
Epic Video.
@Codemycom4 жыл бұрын
Thanks
@hahahahahaha87474 ай бұрын
it was amazing thank you sir
@Codemycom4 ай бұрын
Most welcome
@motiv-a4 жыл бұрын
Thanks for making this video. Very clear explanation. I'm trying to make a simple user profile to add a URL for an avatar to implement later with a Vue component.
@swastiktyagi82463 жыл бұрын
Bro u r king . u don't know how u helps me
@Codemycom3 жыл бұрын
Happy to hear it!
@pavl3n2 жыл бұрын
That still doesn't answer the main question: How does a user create and edit a profile? You've done all this through the admin page, but we didn't get to see how you set it up so the user does it himself.
@Codemycom2 жыл бұрын
That may be your main question, it's not the main question of this video. I have plenty of videos on that sort of thing on the channel.
@waleedwaleed34523 жыл бұрын
This guy is awesome ..
@Codemycom3 жыл бұрын
Thanks!
@tyronemguni38954 жыл бұрын
Great video as usual. My question however I, what if I have multiple user groups and I want to provide specific fields in which each group can enter related information based on their roles in an organisation or setup
@farhanfaisal66204 жыл бұрын
Hi, First of all thanks for the tutorials. I have learned so much from them. Can you please make tutorials on Pygame? Please do it. Thanks, Love from Bahrain 🇧🇭 ❤️
@Codemycom4 жыл бұрын
Yeah I'll be doing pygame soon...
@berkefekeskin9172 Жыл бұрын
Hello! Great video as always 😁🥰 But i have a question. How am i going to create the Profile model right after i created a user in django?
@philippnazarenko7090 Жыл бұрын
How can I make using e-mail field instead of user field??
@Codemycom Жыл бұрын
Sorry, I don't discuss that in this playlist.
@teekumar50563 жыл бұрын
Thanks!
@Codemycom3 жыл бұрын
Welcome!
@giovanniramospedrozo14942 жыл бұрын
hello, great video I'm learning a lot with you. Can I customize the width of a CharField or ArrayField for example? And how?
@everythingjdm80572 жыл бұрын
how do we view somone else profile
@raziessa29324 жыл бұрын
Nice
@Codemycom4 жыл бұрын
Thanks
@musakazem29983 жыл бұрын
thank you
@Codemycom3 жыл бұрын
Welcome!
@nagendranfriends31534 жыл бұрын
Sir , how to use Mail id or Mobile Number in place of Username for Authentication
@Codemycom4 жыл бұрын
Too complicated to explain in a comment
@nagendranfriends31534 жыл бұрын
@@Codemycom Can you please make a video in this sir .
@rahamanhabib13474 жыл бұрын
@@Codemycom that is my question also...it would be great to make another video based on it ...thanks in advance
@chetanniradwar6603 Жыл бұрын
hi
@chetanniradwar6603 Жыл бұрын
@@rahamanhabib1347 hi
@kidsworld18016 ай бұрын
how to make logout functionality
@Codemycom6 ай бұрын
I have videos on that all over the channel
@briangreenberg1533 жыл бұрын
I found that I had to do the following in models.py for the migration to work properly : bio = models.TextField(null=True)
@Codemycom3 жыл бұрын
yeah
@letslearnui3 жыл бұрын
Great as always. I am wondering how we can add a date column in admin / profile page so we know as admin when that profile was created. Appreciate if anyone can solve this for me thanks
@swamiyedla81913 жыл бұрын
How to Create and browser profile
@Codemycom3 жыл бұрын
keep watching the playlist
@fabiof.deaquino47314 жыл бұрын
👍
@Codemycom4 жыл бұрын
👍
@piyushgupta90514 жыл бұрын
class LoginViewSet(ViewSet): def create(self, request): try: user = authenticate(request, username=request.POST.get('username'), password=request.POST.get('password')) if user: token, created = Token.objects.get_or_create(user_id=user.id) return Response({'message':['welcome',request.POST.get('username')],'your login token is':token.key},200) return Response({'message':'invalid credentials'},401) except Exception as e: return Response({'data': '', 'message': str(e)}, 500) i have made loginapi view using viewset now i want to add user profile view in it can you please tell me how to do that
@mehmetali19454 жыл бұрын
if i change our profile model's name as Profilex , i made all the changes , it didnt work, why ? Must be Profile ?