0:50 adding ImageField in Model 2:52 set MEDIA_ROOT in settings.py 5:30 add MEDIA_URL in urls.py urlpatterns 11:30 add input image field in view and template 15:07 default image
best Django playlist on youtube. I learned a lot throughout the series from basics to advance, to create an entire application with covering concepts, thank you man
Hey Brother , I really want to appreciate your work. I say a whole bunch of THANK YOU. I jumped to Python from PHP and for months now it have been very difficult till i saw your videos. this is the very first youtube channel i have subscribed to. God bless you for me .
Thanks for all your content! You said that a redirect needed to be added upon saving the form in the accountSettings function but didnt add the code for us. I realized without it, when the form is submitted it would not show the updated form information (e.g. if you delete an image or add one, you'd have to manually refresh the page, which could lead to duplication of data). So for anyone reading, add this after form.save()...... return redirect('/account')
I have been following this entire series. Very helpful and informative, looking forward to watching more educational content produced by you Dennis. Thank you for your effort!
Hey Dennis, there is a small problem. When a user registers then a default image is set to his/her profile. Then if user adds/uploads a new profile picture then the default profile image will be overwritten with the new one. Now the problem is if the user clears/deletes his/her profile picture instead of choosing/uploading another one, then there will be no file in the 'profile_pic' field. And this causes an error when trying to go to the 'setting' URL. So what I came up with is not to set a default file in ImageField, and fetch the default image if the user has no profile image in the 'profile.html' template. In profile.html: {% if request.user.customer.profile_pic %}
05:50 how come we only do this import "from django.conf import settings" only now, in the 17th video in the series? I mean... if I recall correctly, you mentioned at various times among the videos that we should be defining some variables there... so I am assuming that so far Django saw those variables... why we need to do the import just now?
Hi Dennis, thanks for this excellent contribution to the developer community. Having gone through your tut, it seems like it is designed for a call-in order system whereby only an admin can create, update, or delete an order. I tried modifying some of the templates and scripts to enable a user create, update, delete an order from their user template but not successful. This is because the respective tables need reference (primary key) to a customer and/or order to work. Not sure how to modify code to recognize that current user/customer is the pk (id) that should be referenced. I agree that only an admin should be able to see all customers and their orders but each customer should be able to not only see their own orders but be able to generate new orders, update or delete current orders that have not been shipped. Your help is appreciated sir. And I welcome those who may have answers to this inquiry to so provide with equal gratitude from me to you.
I have a problem in my website. Whenever i create an account for someone, his profile is shown in the navigation bar. But whenever i clicked on his profile, it is showing me errors, but if i login as an admin and add that person as a customer, now he will be able to click on his profile. Can anyone solve this problem for me please ? I want to make it like someone signs up and login as a customer automatically and view his profile without the admin to accept him as a customer and not showing the error !!!
i get this error when i press on the settings from the web site ValueError at /account/ The 'profile_pic' attribute has no file associated with it. Request Method: GET Request URL: 127.0.0.1:8000/account/ Django Version: 3.1.2 Exception Type: ValueError Exception Value: The 'profile_pic' attribute has no file associated with it. what should i do?
If you are running your server at the beginning just after inserting in the Customer model the profile_pic's Image field, a red message will tell you, "Cannot use ImageField because Pillow is not installed" Just CTRL+C when running server and run the following command : python -m pip install Pillow For information, Pillow is a Python module responsible for opening/importing pictures, and Django seems to be using it in its backend to manage pictures.
@Dennis Ivy My CSS styling to the status on dashboard is working but styling is not working when I add style of the profile-pic in main.css file. What is wrong in my program? help me out.
For Django 3.1, for the MEDIA_ROOT variable in settings.py, do this: MEDIA_ROOT = BASE_DIR/"static/images" If that doesn't work, then see if your static folder is somehow not in the same directory or just in your accounts folder (like it was for me). Move it to outside the accounts folder.
Hello Dennis, Why we changed john's user at last and gave it to eric ? ( May be little stupid question , but please explain once :P) I belive , to remove the picture of john and assign it to eric so that john will get default picture ?
first time we pass the instance argument to populate the from ,put why we pass it the second time ?! and why if remove it the form will not change , and with creatorder we didnot use instance
after adding the changes everything works except 'Add order' , keep giving me this error : TypeError at /admin/accounts/order/add/ __str__ returned non-string (type NoneType) Anyone have a clue how to solve this?
Maybe it is because one of your fields has a null value so when it tries to be returned by __str__ function his value returns NoneType instead, which is a null value
@@syrgakomuraliev what I have done for default profile picture is adding conditional statement in profile.html template: {% if request.user.customer.profile_pic %}
Why if we create a new user and then go to admin panel click on Customers the email address is not filled with the email address that we give when we were registered?
Hi Dennis , can you please specify about all the pip installs as multiple errors are arising on running the github code , when I am applying runserver command errors like :< frozen importlib ._bootstrap>,no module named widget_tweaks are coming up , also the __init__.py file is not showing in templates directly, any help would be appreciated Thanks..
I have a problem in my website. Whenever i create an account for someone, his profile is shown in the navigation bar. But whenever i clicked on his profile, it is showing me errors, but if i login as an admin and add that person as a customer, now he will be able to click on his profile. Can anyone solve this problem for me please ? I want to make it like someone signs up and login as a customer automatically and view his profile without the admin to accept him as a customer and not showing the error !!!
I didn't understand. You created OneToOne relationship Customer model and User default model, ok. When new user will register on the site, how does system bundle new registrated User to your Profile model, it can do it only manual in admin panel, don't it?
Please when you are done with this video series, will you consider the school management system or just report card management system i earlier pleaded for?
Sorry totally forgot to address that. It's been requested alot so I probably will make one but I have a list of videos & series I need to complete before that. 1 - Django Crash course series (This course) 2 - Django Rest (API) Framework Course 3 - Twitter Clone App 4 - Django Live Chat App 5 - Django React To DO app After these I'll have to give it a shot :) Sorry i hope you understand, I get alot of requests.
I am working on a project of website and got some bugs and error in uploading image and creating that site with the help of django ...but i found your channel and django tuturial thanks for teaching us sir
HELLO DENNIS,I could not see the customer name at the customer field of the admin panel after using that User field in the customer model.. so I couldn't upload the customer photo through the admin panel initially..
Hey Ryan! Yes I will be releasing a video on that soon for this project. Thanks for mentioning that video Zulqarain, but i will be coming out with another with more details since that was an old video of mine and I didn't explain alot there. Here are the next videos in the series: 1 - Django Signals 2 - Password Reset email 3 - Postgresql database 4 - Pushing Django Live to heroku 5 - Django Static files on AWS S3 Buckets 6 - Postgres Database hosted on AWS RDS This order may change a little but this should give you an idea
Please again are you using django 3 or 2.1 as I saw in video 1? Can you do a school management system after this series? while student an view their report card, profile, update profile, view invoice view teacher , teachers can upload result, I hope you get what i am trying to say. (for a secondary school). please reply .
We started with django 2.1 but all source code was updated to 3.0. Honestly not much of a difference between the two since we're not using many 3rd party packages.
I uploaded the image successfully and uploaded the image stored in a specified directory .but when we open the admin panel, it is not showing the currently uploaded file .could u please tell me what to do?
For anyone, if for some reason when you click on profile1.png it says that the image has not been found, make sure that the static folder is NOT in the accounts folder. I somehow made this mistake like 10 tutorials ago and just realised it now.
I have a problem in my website. Whenever i create an account for someone, his profile is shown in the navigation bar. But whenever i clicked on his profile, it is showing me errors, but if i login as an admin and add that person as a customer, now he will be able to click on his profile. Can anyone solve this problem for me please ? I want to make it like someone signs up and login as a customer automatically and view his profile without the admin to accept him as a customer and not showing the error !!!
Great tutorial as usual, could you consider adding a validation to check mime types and file size before upload? that would be great. wouldn't want anyone uploading a 50mb pdf file as a profile photo.. right?
I had the same issue - login to the admin panel with the user that has a group assigned to it (admin or customer) then launch the cpm login page. It worked for me.
man your guide break my database now I don't know how to delete this (somehow corrupted) data . It always show TypeError __str__ returned non-string (type NoneType)
In models.py........we have created some class....where in each class we have declared a predefined function..(def __str__()).....we have to comment that whole function of the class in which we get error......in the above video we can do it for customer class
from what I understand; User can create an admin or a regular customer you can do this only in the 'admin/'. if you register from the 'register/' page you will be a customer and a user because all the connections that Dennis did in the models.py(Customer) and the views.py(registerPage). do some review about these and I hope you understand them better.
Hey Dennis + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT) after adding the above code into urls, i found that my main.css won't work, whenever i change style in main.css, templates will not inherit the css design, how can i solve this?
This is awesome men. Please do a video on how to deploy django in shared hosting (cpanel). Kindly do it with a cpanel that does not have terminal because majority of them do not have.
At this point, my update order function is actually broken, I am sure that I logged in as an admin, anyone has idea? TypeError at /update_order/1 __str__ returned non-string (type NoneType)
0:50 adding ImageField in Model
2:52 set MEDIA_ROOT in settings.py
5:30 add MEDIA_URL in urls.py urlpatterns
11:30 add input image field in view and template
15:07 default image
Pinned :)
best Django playlist on youtube.
I learned a lot throughout the series from basics to advance, to create an entire application
with covering concepts, thank you man
Hey Brother , I really want to appreciate your work. I say a whole bunch of THANK YOU. I jumped to Python from PHP and for months now it have been very difficult till i saw your videos.
this is the very first youtube channel i have subscribed to. God bless you for me .
So happy to hear that! Best of luck to your studies and I hope my videos continue to help you! I welcome your blessings :)
@@DennisIvy Yes Boss, I really am following you all the way.
Dennis, no lie you have the BEST django react tutorials out there. Keep it up, you're big but you deserve 20x the subs.
I think you have explained concepts very well as compared to others in youtube(django).
Thank you Hemant :)
The keyboard clicks are too good and satisfying... and the Tutorial is very clear and easy to understand
I LOVE YOU BRO. SAVED ME A LOT OF TIME . Hands down one of the best coding tutorials out there !!!!
It is my first time to watch your tutorial.
You are so wonderful!
Thanks for all your content! You said that a redirect needed to be added upon saving the form in the accountSettings function but didnt add the code for us. I realized without it, when the form is submitted it would not show the updated form information (e.g. if you delete an image or add one, you'd have to manually refresh the page, which could lead to duplication of data). So for anyone reading, add this after form.save()...... return redirect('/account')
I'm so tired that I just tried to close YOUR tabs. On a brighter note, this tutorial was really easy to understand and very clear.
That might be the best tutorial on RUclips that explains the whole ImageField process. Thanks Dennis
I have been following this entire series. Very helpful and informative, looking forward to watching more educational content produced by you Dennis. Thank you for your effort!
Hey Dennis, there is a small problem. When a user registers then a default image is set to his/her profile. Then if user adds/uploads a new profile picture then the default profile image will be overwritten with the new one. Now the problem is if the user clears/deletes his/her profile picture instead of choosing/uploading another one, then there will be no file in the 'profile_pic' field. And this causes an error when trying to go to the 'setting' URL.
So what I came up with is not to set a default file in ImageField, and fetch the default image if the user has no profile image in the 'profile.html' template.
In profile.html:
{% if request.user.customer.profile_pic %}
{% else %}
{% endif %}
Haha, I did exectly the same and it's working.
Geniuses think alike.xD
this is the simplest solution! thank you. Also just note that I had to add {% load static %} to the page in order for this to work
When we update the image, the old image stays in the images file, how do we get rid of that?
Спасибо!) Без вашего курса я бы еще долго думал почему выводиться imagefield.)
05:50 how come we only do this import "from django.conf import settings" only now, in the 17th video in the series? I mean... if I recall correctly, you mentioned at various times among the videos that we should be defining some variables there... so I am assuming that so far Django saw those variables... why we need to do the import just now?
Hi Dennis, thanks for this excellent contribution to the developer community. Having gone through your tut, it seems like it is designed for a call-in order system whereby only an admin can create, update, or delete an order. I tried modifying some of the templates and scripts to enable a user create, update, delete an order from their user template but not successful. This is because the respective tables need reference (primary key) to a customer and/or order to work. Not sure how to modify code to recognize that current user/customer is the pk (id) that should be referenced. I agree that only an admin should be able to see all customers and their orders but each customer should be able to not only see their own orders but be able to generate new orders, update or delete current orders that have not been shipped. Your help is appreciated sir. And I welcome those who may have answers to this inquiry to so provide with equal gratitude from me to you.
I have a problem in my website. Whenever i create an account for someone, his profile is shown in the navigation bar. But whenever i clicked on his profile, it is showing me errors, but if i login as an admin and add that person as a customer, now he will be able to click on his profile. Can anyone solve this problem for me please ? I want to make it like someone signs up and login as a customer automatically and view his profile without the admin to accept him as a customer and not showing the error !!!
i get this error when i press on the settings from the web site
ValueError at /account/
The 'profile_pic' attribute has no file associated with it.
Request Method: GET
Request URL: 127.0.0.1:8000/account/
Django Version: 3.1.2
Exception Type: ValueError
Exception Value:
The 'profile_pic' attribute has no file associated with it.
what should i do?
Same with me. Have u been able to fix it?
If you are running your server at the beginning just after inserting in the Customer model the profile_pic's Image field, a red message will tell you, "Cannot use ImageField because Pillow is not installed"
Just CTRL+C when running server and run the following command : python -m pip install Pillow
For information, Pillow is a Python module responsible for opening/importing pictures, and Django seems to be using it in its backend to manage pictures.
Hi Dennis I am getting following error
"The 'profile_pic' attribute has no file associated with it."
pls help
@Dennis Ivy My CSS styling to the status on dashboard is working but styling is not working when I add style of the profile-pic in main.css file. What is wrong in my program? help me out.
For Django 3.1, for the MEDIA_ROOT variable in settings.py, do this: MEDIA_ROOT = BASE_DIR/"static/images"
If that doesn't work, then see if your static folder is somehow not in the same directory or just in your accounts folder (like it was for me). Move it to outside the accounts folder.
Thanks bro
@@pavankumarv5214 np
how would you allow a user to add more than one image? but still require at least one image
Thank you Dennis for your wonderful tutorial videos. I got two solutions from your channel
how can i design the image field like hide the choose file and currenty showing image url like that.
in customers you are setting users manually how to do it dynamically i.e when the user registered the user field in customer sets automatically
Hello Dennis,
Why we changed john's user at last and gave it to eric ? ( May be little stupid question , but please explain once :P)
I belive , to remove the picture of john and assign it to eric so that john will get default picture ?
not working with a default user_directory_path function?
hey plz can you plz make a video talking of how to crop an image when uploading
plz like talk about jcrop, and thanks for the explaination above
first time we pass the instance argument to populate the from ,put why we pass it the second time ?! and why if remove it the form will not change , and with creatorder we didnot use instance
i dont have a field im trying to add it with the command prompt becasue there is no log in it is a basketball website, how do i do that
after adding the changes everything works except 'Add order' , keep giving me this error : TypeError at /admin/accounts/order/add/
__str__ returned non-string (type NoneType)
Anyone have a clue how to solve this?
i have the same error did u solve the problem ?
i have the prblm too
Maybe it is because one of your fields has a null value so when it tries to be returned by __str__ function his value returns NoneType instead, which is a null value
You need to set (blank='True', null='True') to your fields. I had the same problem and it worked for me
@@syrgakomuraliev to all fields or just the customer
Am getting a ValurError at /account/
The 'profile_pic' has no file associated with it.
Can anyone pls tell me how to solve this!!
Have you solved that problem ?
@@syrgakomuraliev no
Pranay Raj Worshipper I think u should create a new user and he will have a default pic. It worked for me
@@syrgakomuraliev Yeah will try, thanks by the way
@@syrgakomuraliev what I have done for default profile picture is adding conditional statement in profile.html template:
{% if request.user.customer.profile_pic %}
{% else %}
{% endif %}
Thankyou very much!! Very well explained 😄
hi thank you for your content , but what can i do to store images in a mangodb ? and update it retrieve it dynamically?
New version of Django. Great!
Why if we create a new user and then go to admin panel click on Customers the email address is not filled with the email address that we give when we were registered?
Tutorial on how to place order as customer would be great!
Hi Dennis , can you please specify about all the pip installs as multiple errors are arising on running the github code , when I am applying runserver command errors like :< frozen importlib ._bootstrap>,no module named widget_tweaks are coming up , also the __init__.py file is not showing in templates directly,
any help would be appreciated Thanks..
help me please : ImportError: cannot import name 'six' from 'django.utils' (/home/doan/.local/lib/python3.7/site-packages/django/utils/__init__.py)
I have a problem in my website. Whenever i create an account for someone, his profile is shown in the navigation bar. But whenever i clicked on his profile, it is showing me errors, but if i login as an admin and add that person as a customer, now he will be able to click on his profile. Can anyone solve this problem for me please ? I want to make it like someone signs up and login as a customer automatically and view his profile without the admin to accept him as a customer and not showing the error !!!
omg thank you soo much. I was literally looking for this
I didn't understand. You created OneToOne relationship Customer model and User default model, ok. When new user will register on the site, how does system bundle new registrated User to your Profile model, it can do it only manual in admin panel, don't it?
Please when you are done with this video series, will you consider the school management system or just report card management system i earlier pleaded for?
Sorry totally forgot to address that. It's been requested alot so I probably will make one but I have a list of videos & series I need to complete before that.
1 - Django Crash course series (This course)
2 - Django Rest (API) Framework Course
3 - Twitter Clone App
4 - Django Live Chat App
5 - Django React To DO app
After these I'll have to give it a shot :) Sorry i hope you understand, I get alot of requests.
@@DennisIvy i totally understand and appreciate. which ever way it is I'm learning. Thanks a lot Boss
Thank you Dennis 👏👍👍👍
at the customers page on admin it created "-" and once i click or delete it, it says: __str__ returned non-string (type NoneType)
In the models.py file under Customer model, change to ```def __str__(self):
return str(self.name)``` . Worked for me.
@@Martin-Mwiti but it creates just None
Thanks, amazing tutorial
I am working on a project of website and got some bugs and error in uploading image and creating that site with the help of django ...but i found your channel and django tuturial thanks for teaching us sir
I do get this error whenever I try to save the profile__pic image . ------- _getfullpathname: path should be string, bytes or os.PathLike, not list
HELLO DENNIS,I could not see the customer name at the customer field of the admin panel after using that User field in the customer model.. so I couldn't upload the customer photo through the admin panel initially..
I could not see the newly created customer after using the User field in the customer model...
You're great, man!
Empty static prefix not permitted
got this error
django 3.1 version -
urlpatterns = [
...
] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
You are godsent
Thank you this was super helpful!
Hey Dennis,
Do you know when will be the last video of this tutorial ?
Because I want to learn how to deploy the app.
He already has a video on that. Check his playlist where there is another series of django related.
ruclips.net/video/Wa8O5lL_d0M/видео.html
I know but can I modify my app.
After launching it on Heroku
Thanks for your advice guys
@@ryan_0337 Yes, You can. After modifying You have to just push on Heroku your updated app
Hey Ryan! Yes I will be releasing a video on that soon for this project. Thanks for mentioning that video Zulqarain, but i will be coming out with another with more details since that was an old video of mine and I didn't explain alot there.
Here are the next videos in the series:
1 - Django Signals
2 - Password Reset email
3 - Postgresql database
4 - Pushing Django Live to heroku
5 - Django Static files on AWS S3 Buckets
6 - Postgres Database hosted on AWS RDS
This order may change a little but this should give you an idea
Amazing Video!! how can I add the model custumer automatically to a user?
Please again are you using django 3 or 2.1 as I saw in video 1?
Can you do a school management system after this series? while student an view their report card, profile, update profile, view invoice view teacher , teachers can upload result, I hope you get what i am trying to say. (for a secondary school). please reply .
We started with django 2.1 but all source code was updated to 3.0. Honestly not much of a difference between the two since we're not using many 3rd party packages.
@@DennisIvy Ok Thanks for the really.
Thanks for all you do! 👍
Your welcome Davide! I'm just glad people are finding these videos useful :)
@@DennisIvy very useful
@@DennisIvy twitter.com/chrisoncode/status/1216770622195240960?s=19
I uploaded the image successfully and uploaded the image stored in a specified directory .but when we open the admin panel, it is not showing the currently uploaded file .could u please tell me what to do?
please anybody give reply for this
image upload not working on heroku live... though works locally ....need your help badly dennis
How can we retrieve the url of image field in views.py
For anyone, if for some reason when you click on profile1.png it says that the image has not been found, make sure that the static folder is NOT in the accounts folder. I somehow made this mistake like 10 tutorials ago and just realised it now.
What's the difference between the user and the customer?
The 'profile_pic' attribute has no file associated with it
Why is that ?
FIRST U NEED TO UPLOAD THE CUSTOMER PIC USING ADMIN PANEL....AND THEN CHECK ONTO THE SPECIFIC CUSTOMER PAGE
@@aishu812 but when u clear the profile pic in setting form it shows that error
did u solved it yet ?
Thanks a lot, I searched for it all day yesterday!!!
"Empty static prefix not permitted" I am having this issue right now.
Deepjyoti De I have the exact same problem
@@bruclnartir3086 I added a STATIC_ROOT and it worked.
@@deepjyotide181 can i see you Url.py
same problem anyone got the solution with this ???
Love you, bro...
I can't load the images and I don't know Why anyone can help me please
how to restrict anonymous visitor from viewing profile image by typing picture path to url?
You can use
{% if request.user.is_authenticated %}:
#shows only to authenticated users
{% else %}
# shows to anonymous
{% endif %}
Thank you so much sir.
I am waiting this also how to add profile image using Django.
I have a problem in my website. Whenever i create an account for someone, his profile is shown in the navigation bar. But whenever i clicked on his profile, it is showing me errors, but if i login as an admin and add that person as a customer, now he will be able to click on his profile. Can anyone solve this problem for me please ? I want to make it like someone signs up and login as a customer automatically and view his profile without the admin to accept him as a customer and not showing the error !!!
Excellent course
21/07/2020
Great tutorial as usual, could you consider adding a validation to check mime types and file size before upload? that would be great. wouldn't want anyone uploading a 50mb pdf file as a profile photo.. right?
I think we can set validation by checking the file extension...
@@hansenlobo yes that would be good but also file size we dont want 20k photo taking up our space
I tried to upload the images but thd images are save in separate folder with same name static/images/ please can you tell me anything about this
I had the same problm.
but it works as per this tutorial
Hehhe same problem😂
I have this issue
The view accounts.decorators.wrapper_function didn't return an HttpResponse object. It returned None instead.
I had the same issue - login to the admin panel with the user that has a group assigned to it (admin or customer) then launch the cpm login page. It worked for me.
How to remove previous profile picture? (delete it)
Is it possible to remove "currently" and change?
thank you it's very helpful
Dennis please make a video how to upload several images in one post
CSS file is not updating what to do
where can i get acode
TypeError at /images/anil.jpg
expected str, bytes or os.PathLike object, not NoneType
I am gettting this error please help while
Same error with me, have you got any solution?
man your guide break my database now I don't know how to delete this (somehow corrupted) data . It always show TypeError __str__ returned non-string (type NoneType)
i got same type of error ...if you've got some solution for this please inform me too
same problem ! when I want to add order in my DB : TypeError at /admin/accounts/order/add/
__str__ returned non-string (type NoneType)
I got the solution... In models make comment to the return type __str___ in the class you're getting error
In models.py........we have created some class....where in each class we have declared a predefined function..(def __str__()).....we have to comment that whole function of the class in which we get error......in the above video we can do it for customer class
@@sumitthakur7216 thank you so much , I will try
the image cannot load in fronend view whats the solution for that anyone help for this
Thank you so much God Bless!
Thanks James :)
I am unable to understand the relationship between User and Customer. Can anybody explain a little bit?
from what I understand; User can create an admin or a regular customer you can do this only in the 'admin/'.
if you register from the 'register/' page you will be a customer and a user because all the connections that Dennis did in the models.py(Customer) and the views.py(registerPage).
do some review about these and I hope you understand them better.
So when we create a customer, do we need to create a corresponding user account for that customer??...please clear this doubt....
I also have the same question. I cannot understand the relationship between User and Customer
you must add to customer an user in admin Django before
Hey Dennis
+ static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
after adding the above code into urls, i found that my main.css won't work, whenever i change style in main.css, templates will not inherit the css design, how can i solve this?
The fun beginns when you realise, that you cannot use that in production and your image url is viewable by anyone with the link.
Hey Dennis, Please Make a complete on Django signals. Like Setting profile picture automatically when user signup.
Working on it now :)
This is awesome men. Please do a video on how to deploy django in shared hosting (cpanel). Kindly do it with a cpanel that does not have terminal because majority of them do not have.
Thanks To The Author !!! could you still make a video creating an ad site on django 3
This was done in Django 3.0. What do you mean by “Ad site”? Если вам легче, можете по Русский говорит :)
@@DennisIvy Спасибо Вам еще раз за ваши уроки!!! Можете еще создать курс по Django3 на тему сайта размещения объявлений.
Денис, у тебя отличный английский! :) Где так натаскался?
how did you make the profile pic appear circular
That's made with the following CSS rule:
img {
border-radius: 50%;
}
Change
from django.conf.urls import static
to
from django.conf.urls.static import static
and you're good to go.
Those who are getting prb
Dennis Ivy can you assist me with my issue???
make a video on upload image as a input file using html , don't use inbuilt form method for uploading image
Thank you!
At this point, my update order function is actually broken, I am sure that I logged in as an admin, anyone has idea?
TypeError at /update_order/1
__str__ returned non-string (type NoneType)
Mine too
@@sanjoysarker650 did this work for you
Change
from django.conf.urls import static
to
from django.conf.urls.static import static
and you're good to go.
Those who are getting problem
Just leaving a mark guys: 8:00