django-address icon indicating copy to clipboard operation
django-address copied to clipboard

A Django address model and field. Addresses may be specified by address components or by performing an automatic Google Maps lookup.

Results 52 django-address issues
Sort by recently updated
recently updated
newest added

I am using django-address 0.2.5 in my django 3.1 app. I am trying to run some parts of the app from the command line using: ```python from django.conf import settings...

Question

AddressField is defined in address.forms. - Review current best practices for custom field definitions - Compare these practices with current implementation - Describe any changes that should be made -...

As [originally described here](https://github.com/furious-luke/django-address/pull/116#issuecomment-649961159). It appears possible to have the `.change()` jquery event detect a click on the page that will end up clearing meta used during form submission. **Reproduction...

Bug
Needs Validation

Hi, it would be great if support of Yandex [geocoder](https://tech.yandex.com/maps/geocoder/) could also be added in the future releases. Is it possible?

- django-address is not just about geocoding, (and ideally it would hook into any of the major geocoding services OOB.) - django-address is first intended to be a useful schema...

Sometimes you don't want to allow a user to choose from any kind of location, but you want to scope it to a certain type (e.g., cities only). The JQuery...

After using `django-address` (dev branch) in production for about a year at least, I have several thousand addresses in the respective table and about 12% of them have no formatted...

Bumps [django](https://github.com/django/django) from 3.2.6 to 3.2.15. Commits 653a7bd [3.2.x] Bumped version for 3.2.15 release. b3e4494 [3.2.x] Fixed CVE-2022-36359 -- Escaped filename in Content-Disposition header. cb7fbac [3.2.x] Fixed collation tests on...

dependencies

I'm registering MyModel in the admin: ``` @admin.register(MyModel) class MyModel(admin.ModelAdmin): search_fields = ['field_1',] filter_horizontal = ['phone_fk', 'email_fk',] formfield_overrides = {AddressField: {"widget": AddressWidget(attrs={"style": "width: 400px;"})}} autocomplete_fields = ['parent', ] ``` When...