django-address
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.
It occurs to me that some addresses may not have a state or locality (actually, I'm not sure this is true). It might be necessary to allow address without one...
If I add an address with web browser configured in English the plugin works fine. It adds the Country, the State or equivalent entity, the Locality and generate the correct...
Starting new projects in Django 3.2, the default type for primary keys is set to a BigAutoField which is a 64 bit integer. However, earlier versions set the type of...
Modernize test running in the package, possibly remove symbolic link used in example. See example method from [django-registration](https://django-registration.readthedocs.io/en/3.1/faq.html?highlight=running%20tests#general). Consider best practices in [Django Standalone Apps](https://www.apress.com/us/book/9781484256312). See also [this blog post](https://www.b-list.org/weblog/2017/apr/03/testing-django-apps/)....
Towncrier is a neat little project that assists in automatically preparing release notes for projects. I think it could be useful to automate this process. A couple things that we...
Prior to replacing the jQuery widgets with the more modern Google autocomplete library, adding some end-to-end tests will allow us to be confident that the changes we've made haven't broken...
I've come to believe jquery should be eliminated from new software releases where possible. `django-address` uses jquery in the javascript functions that perform the auto complete function, ([jquery.geocomplete.js](https://github.com/furious-luke/django-address/blob/master/address/static/js/jquery.geocomplete.js)). Does anyone...
Bump2version is a tool to assist in automatically implementing semver versioning. It might be nice to use it in our CI pipeline to automatically bump our versions.
Hello, Amazing work! I managed to play a bit with it in my project, but i have a rookie question... i try to find where in the JS code some...
If you create an address object A using `Address.objects.create(raw='123 MyStreet, Portland, OR 97269'` Then in another model with an AddressField `address`: ``` Class Building(models.Model): address = AddressField(on_delete=models.SET_NULL, null=True) ``` Then...