most of my dbts were cleared by watching this ... thankz for having this great video ...
@CodeBand4 жыл бұрын
Very glad to hear that...❤️ Keep going👍🏻👍🏻
@Rabekkarabe7 ай бұрын
ഇനിയും അഡ്വാൻസ്ഡ് ക്ലാസുകൾ പ്രതീക്ഷിക്കുന്നു... 👍👍👍 ഈ default അഡ്മിൻ പേജ് മാറ്റങ്ങൾ എങ്ങനെ വരുത്താം അഡ്മിൻ പനലിന്റെ name കളർ ബിഹാവിയർ അതൊക്കെ എങ്ങനെ ചേഞ്ച് ചൈയ്യും?
@eashithajithu46887 ай бұрын
awesome explanation, thank you so much !!!!!!
@PradeeshAV854 жыл бұрын
Great videos. Keep up the good work and keep sharing. I am ok with Authentication. Can you elaborate more on user Authorization (In Malayalam) I could understand how every user needs to log-in to reach a resource. But how to limit the resource/data access based on the user type. E.g.: 1) Admin of the website has limitless control of the entire app including users 2) The manager has all the controls except for User creation (but can activate/deactivate users). And other models with only view, Create & Update (cannot delete) permissions 3) Staff can create, view some models. But cannot Update or delete the models. How about using Django-allauth package? You can also explain in the default built-in Django auth. It's up to you.
@CodeBand4 жыл бұрын
Great....glad to hear that....Authentication and Authorisation are one of the powerful parts of Django...built-in...I would definitely try to do those videos in future... And Django-allauth is a good package. But, its better to start with built in stuff, before moving into any packages. Anyways, keep going❤️
@Code Band Thank you for the reply.Can you please do a video on django-axes.Is it possible to lock a user with email instead of username in django-axes?
@CodeBand2 жыл бұрын
I'll try to make a video out of it. And regarding the email instead of username, please check the docs, there might be a section where it might be explaining the usage with custom user model.
@TheEngineer232 жыл бұрын
@@CodeBand Hi, Do you know about Ajax loading in django?
@CodeBand2 жыл бұрын
Sorry for late reply... I hope you got it.
@kelvinmuriithi4 жыл бұрын
why not speak just English?
@CodeBand4 жыл бұрын
I didn't get you. U mean just to stick to English videos..😅
@kelvinmuriithi4 жыл бұрын
@@CodeBand exactly. So that even someone like me can learn with your videos
@CodeBand4 жыл бұрын
@@kelvinmuriithi The fact is that for every videos I upload, I have both English and Malayalam versions, except for some old videos...So, whenever you met with a Malayalam video, definitely, you can find the English version as well. And for the custom user also, there is an English version, here it is... kzbin.info/www/bejne/iZO4Y6qaha6Wl7s Thanks for supporting😊😊
@kelvinmuriithi4 жыл бұрын
@@CodeBand okay. Thank you
@CodeBand4 жыл бұрын
@@kelvinmuriithi 😊
@ajmalrishad72 жыл бұрын
showing this error ⚠ line 39, in CustomUser email = models.EmailField(_('email address'), unique=True) TypeError: ugettext_lazy() takes 0 positional arguments but 1 was given
@CodeBand2 жыл бұрын
ugettext_lazy() has been removed, you can use gettext_lazy() instead. Change all ugettext_lazy imports to the below one : from django.utils.translation import gettext_lazy as _