tomdtp
tomdtp
I have an API view using a BBOX filter: ```Python class ProtectedAreaGeoJSONViewSet(ListAPIView): schema = AutoSchema(operation_id_base="ProtectedAreaGeoJSON") queryset = Geodata.objects.all() bbox_filter_field = "geometry" filter_backends = (InBBoxFilter,) ``` This leads to the generation...
**Description:** I am receiving an error message when running the CI, which is: ``` Run actions/setup-python@v4 /usr/bin/docker exec 47d5533689e05c9f17b55f1237300dc760ccb1afc3a7608da7cde431b7a12dc3 sh -c "cat /etc/*release | grep ^ID" Installed versions /__t/Python/3.10.12/x64/bin/pip cache...
We have some larger polygons in our database and in order to simplify calculations etc we have a GeneratedField, which builds a simplified version of the polygon. ``` geometry =...
I could not find a way to install the htmx-extensions from npm. Ideally we would have one package per extension and be able to install and version them.
In my select elements I don't want to show the default "---------" empty_label. However setting ```python country = CountryField().formfield(empty_label="") ``` does not have any effect.
**Describe the bug** Running the install.sh script I see an error: `sh: 130: [: linux: unexpected operator` **To Reproduce** Steps to reproduce the behavior: 1. ` curl -fsSL https://raw.githubusercontent.com/oasdiff/oasdiff/main/install.sh |...
**Is your feature request related to a problem? Please describe.** I want to make sure in our dev environment that we do not accidentally introduce errors due to an unknowngly...
## Problem When using custom filters that perform search across multiple fields (e.g., a `search` parameter that queries several fields but doesn’t correspond directly to a single model field), `drf-spectacular`...