Skip to main content
The 2026 Annual Developer Survey is live— take the Survey today!

Question list filters

Filter by
Sorted by
Tagged with
Filter by Employee ID
Score of 0
1 answer
55 views

Whenever I try to start up Selenium ChromeDriver via Django on an Ubuntu server, I get a "session not created" error. The issue appears to be based on starting it with the Django process, as ...
Score of 1
1 answer
61 views

This view in realestate\auth2\views.py validates form data and checks if the email or phone has already been taken. It also logs messages depending on situation and I pass dictionaries as logging ...
Score of -2
0 answers
54 views

After having upgraded some Django libs, I get: AttributeError: 'PdbMiddleware' object has no attribute 'async_mode' I have googled, but found no result with proper suggest. I do not have this ...
Score of -1
0 answers
125 views

Can Django autocapitalize first letters inside placeholders like how Laravel does? Field name/attribute: msgid "first_name" msgstr "ime" Error message with normal placeholder: ...
Score of -1
1 answer
74 views

I am running a Django project in a container that defaults to expose the app on port 80, but due to specifics of my configuration that port is in use and I have it remapped to 8080. This breaks the ...
Score of -1
1 answer
108 views

Models.py: class Training_details(models.Model): training = models.ForeignKey(Training, on_delete=models.CASCADE) description = models.TextField() class Meta: db_table = '...
Tooling
2 votes
2 replies
69 views

I am learning machine learning and deep learning using miniconda environment on native python. Now I am looking to learn Django and other backend packages like fastapi and tornado. Is conda enough for ...
Score of 3
0 answers
109 views

I am integrating a real-time computer vision pipeline into a Django view backend to process webcam frames. The frame analysis logic runs when a request hits the endpoint. My code is within a view like ...
Tooling
0 votes
0 replies
46 views

I have a web page where I populate elements (in a grid) with HTML. This works nicely using Django's render() and querying using HTMX, as required. I now have a case where I'd like to populate the ...
Advice
1 vote
4 replies
113 views

I'm looking for architectural feedback from experienced software engineers and architects. Current Context We have a business management platform used by multiple companies. Tech stack: Frontend: ...
Score of 1
1 answer
110 views

I am building an audit trail system in Django where I need access to the current HTTP request inside model signals (pre_save, post_save, pre_delete, post_delete). The goal is to make signals “request-...
Score of 2
1 answer
166 views

I'm using Django with React. I'm creating a CRUD application for products. My Product table is related to the Category, Brand, Model, Quality, and Supplier tables. I can save the data, but when I try ...
Score of 1
2 answers
169 views

I'm on Django==5.2.12 and django-imagekit==6.1.0 This is my PostImage model: class PostImage(models.Model): post = models.ForeignKey(Post, on_delete=models.CASCADE, null=True, related_name="...
Score of 2
1 answer
104 views

I'm trying to send a message to a newly registered user in Django using Redis. I had a project with the analogical functionality and it worked. In my current project, I get this error "...
Score of -1
1 answer
131 views

I'm trying to make a website and part of that is having tags much like this site has. I'm trying this: def index(request): storylist = Story.objects.order_by("id") tagslist = [] ...

15 30 50 per page
1
2 3 4 5
20746