django_postgres_extensions icon indicating copy to clipboard operation
django_postgres_extensions copied to clipboard

Extra functionality for django.contrib.postgres

Results 7 django_postgres_extensions issues
Sort by recently updated
recently updated
newest added

RecursionError issue #9 fixed django.contrib.postgres.fields import fixed six import fixed ArrayManyToMany doc example fixed

Hello! I use model from the example of ArrayManyToManyField: ``` class Publication(models.Model): title = models.CharField(max_length=30) def __str__(self): return self.title class Meta: ordering = ('title',) class Article(models.Model): headline = models.CharField(max_length=100) publications...

The Django 3.0.0 release notes specify that certain private Python 2 compatibility APIs were removed. Among those was django.utils.six. Changing it to `six`

https://docs.djangoproject.com/en/2.1/releases/2.1/#features-removed-in-2-1 - the django.utils.translation.string_concat() is removed in v 2.1. Tested with v2.1 and 2.2 - albeit only for startup.

i'm using postgis backend in my setting and i doubt about changing it to this package

Missing the dot after objects

Hi, on version 0.9.3, it is does not ship with the templates directory. So it is unable to load nested_form_widget.html. Thanks