Bro your tutorial are amazing!! you helped me alot and your way of coding it is so easy to understand!
@Magistrado19144 жыл бұрын
Excellent course 02/10/2020
@puteri85 жыл бұрын
thank you. it helped me
@rogvids6 жыл бұрын
Great video. It will be good if you make a video on extending user using onetoone field(which you already uploaded) and create signup process using userform and profile form in a single view.
@krishnakumarjangid61485 жыл бұрын
hello sir in forms.py how we will generate the form if i have 3 dropdown list for Country State City and state and city are depended on country means i m using ajax to fetch state and city then how will i do this please provide me some reference thanks
@karthikeyanrajendran60045 жыл бұрын
Your videos are awesome.. understanding easily... Thanks..! can you make a video to use webcam in django to take a snap and store it into folder??
@sanjaygd33105 жыл бұрын
Sir when I try to delete user the following error is occurring : 'str' object is not callable. Can you please help me with this?
@jehanjoshi17505 жыл бұрын
could you please put up an example where we can perform the add user via the admin portal in django ? I currently extended the User model to include the profile I can associate a profile to an already created user in Django admin but can't add a new user through the django admin.
@wallawalla44055 жыл бұрын
how to add custom button or action in django admin panel to view single blog or template ?
@ankurparmar42596 жыл бұрын
'WSGIRequest' object has no attribute 'UserForm' when i am summitting employee form then showing mention Error..
@varshikagurudu43066 жыл бұрын
hi sir, i need to send email to multiple admins when a user is created and if admin activates the user then user get the activation mail...how to write code.... just tried superusers = User.objects.filter(is_superuser=True) superusers_emails = User.objects.filter(is_superuser=True).values_list('email')
@varshikagurudu43066 жыл бұрын
@@HardikPatelN how do I write code to send email to multiple admins
@varshikagurudu43066 жыл бұрын
@@HardikPatelN and also please do a video on dynamic forms
@arunjose15965 жыл бұрын
Getting a 'str' object is not callable error while performing the user.delete()
@paulajakaye7196 жыл бұрын
please can you upload this particular video on github and share the link
@ashikurrahman88746 жыл бұрын
return u, where u is return.which one is accept u.
@anjumkhan575 жыл бұрын
sir can you show employee details .html page
@jiminaaa19936 жыл бұрын
Sir very nice tutorial video but very difficult to follow you. You are not showing your code fully, many files code you didn't show. Please show all codes so that everybody can follow you. Good project for understanding the django and python.
@ashikurrahman88746 жыл бұрын
what is difference between super.save() or super().save()
@ashikurrahman88746 жыл бұрын
@@HardikPatelN one more question which is below
@ashikurrahman88746 жыл бұрын
u=super().save(),how u is object of userobject?
@ashikurrahman88746 жыл бұрын
which is parent class user or forms.modelform?
@fonsecafmco6 жыл бұрын
Thank you in advance for your work. It is excellent! I have a question, whenever I create a user, the something it's wrong with password. I can see that in Django admin. It says: " Invalid password format or unknown hashing algorithm." Any idea what is wrong? Thank you!