Vsevolod Novikov
Vsevolod Novikov
Doing trick like proposed we are passing correct names to the inspector. What is not good, I don't know how to check inspector behaviour correctly. Really I've checked it in...
Sometimes different backends or different backend credentials are necessary to be used simultaneously in one instance of the server, so we need to have an option to transfer parameters from...
We need patches like the following to have a field crossing a reference: ```python class PassengersFilter(BoundingBoxFilter): """Filter customized by the calculated field""" geometry_fields = ['location_point'] @admin.register(Passenger) class SomeAdmin(LeafletGeoAdminMixin, LeafletAdminListMixin, admin.ModelAdmin):...
The `Media` class in the mixin is overridden by the Media class of the final ancestor. We can use the `get_media` method instead to combine ancestor media with the mixin...
It is useful to make the filtering bounding box editable and rerun the filter with a modified bounding box. Or even some arbitrary geofence ...
It is useful to hide parent_link field totally while editing a sub-model using InvisibleModelAdmin. The following snippet does it. ``` from easymode.tree.admin.relation import InvisibleModelAdmin from django.forms.widgets import HiddenInput class HideParentModelAdmin(InvisibleModelAdmin):...
For some reason, the LinkInline doesn't show inline objects except the first one. I've created a very simple example with two models: ``` python from django.db import models # Create...
# Issue #5325 - Features: - ADDED: a new `ways` subsection in the `annotations` section containing way IDs along the found path, with sign meaning direction [#5325] - API: -...
### Prerequisites - [X] I have [searched](https://github.com/twbs/bootstrap/issues?utf8=%E2%9C%93&q=is%3Aissue) for duplicate or closed feature requests - [X] I have read the [contributing guidelines](https://github.com/twbs/bootstrap/blob/main/.github/CONTRIBUTING.md) ### Proposal A simple CSS allows `.invalid-feedback` or `.valid-feedback`...
# Problem description Since the aiohttp is used, the documentation erroneously refers to the urllib3 and synchronous request execution, like [here](https://kubernetes-asyncio.readthedocs.io/en/latest/kubernetes_asyncio.client.api_client.html#kubernetes_asyncio.client.api_client.ApiClient.call_api). # Details ## ApiClient.call_api() wrong description The following is...