Skip to content

Tag: django

Django get data from related model which has the FK

how can i make this queryset: models with Property.objects.all() I can see in the returned object that there is a listing_set let say: but it brings the entire model, and not the related to property_id; also tried to get Ota data in serializer with SerializerMethodField and perform a new query to get this inf…

Python Django REST Infinite Recursion Problem

As of late I’ve started working towards learning REST Api with Django Rest Framework, Cors headers, and mssql connector both for personal purposes, and for a project I’m working on. Beneath I’ll include snippets of code and or the errors I got to make this easier to digest. Working with this…

Django – Retrieve a session value to a form

I have a Django aplication and need to get a value from the session and put it in a HiddenInput. I have this code in my view: When I have some value on ‘obra_aberta_id’ I need to put this value on a HiddenInput: But I’m getting an error on ‘request’: name ‘request’ is…