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

Improved Django model inheritance with automatic downcasting

Results 150 django-polymorphic issues
Sort by recently updated
recently updated
newest added

The `django-polymorphic` package's top-level `__init__.py` file imports `pkg_resources`, which is part of the `setuptools` package. Attempting to use `django-polymorphic` in a Python environment that does not have `setuptools` installed leads...

Hi, I had added ppc64le(Linux on Power) architecture support on travis-ci in the branch and looks like its been successfully added. I believe it is ready for the final review...

This is an attempt at adding support for `select_related` and thus closing #198. So far it has no unit tests or documentation and has mostly been tested with [Graphene-Django](https://github.com/graphql-python/graphene-django) which...

Hi I'm using commit #4a60c1f so apologies if this is on its way and thank you to everyone contributing to this project. Currently when using Grappelli with polymorphic I can...

help wanted

I think it would be great if support for graphene would be added

Hello, I'm a bit lost. I have created a function to create a celery beat task on a post save signal for child objects of a polymorphic class. When the...

When the Django admin is themed, the dropdown list is not easily accessible when using the PolymorphicInline. Is it possible to load the choice list via a modal form instead...

For disclosure, this is my first involvement with github issues so I am not sure that what I am about to say is in line with convention. I am also...

If I `prefetch_related` with a `to_attr` field, the results of the prefetch do not seem to get saved to an attribute on the query results if the prefetch is for...

Hi, the problem i was facing Is kinda straightforward: I have 3 models: `Class B(models.model): datefield.... datefield.... ` `Class A(PolymorphicModel, Class B): .... ` `Class C(Class A): .... ` Class...