Skip to content

Tag: django

I want to know why secret_key is wrong

I’m making website using Python Framework of ‘Django’. I have some problems with Django about secret_key . When I set a secret_key in .env file on private and change settings.py, there is problem. I’m trying to solve it by myself, but its so difficult. When I runserver on django, It er…

Order of Operations Django Templates

I have a float variable mynumber in Django templates, and I need to round it to the nearest integer without third party filters, so I’m following this logic: In Django templates I can do this: But the problem, as you can see, is that there is no order of operations, so I get a different number than the …

Image is not updating in Django

Please help me. I am trying to update the profile in which username and email are updated but the image dose not. My code is…. profile.html views.py forms.py Answer I believe your issue lies in views.py. Firstly, you are checking to see if the method for retrieving the view is POST. If it is not, you ar…

Format decimal on definition in Admin Panel Django

I create a definition to get the percentage of completed tasks associated with a project. I want to eliminate the decimals and transform it into whole numbers Finally, the idea is that if all the tasks are completed, the project status should go to finished Answer You can round the value you obtain when retri…