Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

StackedPolymorphicInline broken in admin, they are rendered but dynamic behavior not present. #468

Closed
marcosalcazar opened this issue Sep 24, 2020 · 1 comment

Comments

@marcosalcazar
Copy link

marcosalcazar commented Sep 24, 2020

Hello!

I need your help with something, not sure if this is a bug or an error on my side.

I've configured admin as explained here https://django-polymorphic.readthedocs.io/en/stable/admin.html#inline-models
It was working, until something broke it recently (I suspect something in the browser? I'm pretty sure it was working ok)

Now the inlines are rendered, but no polymorphic inline support is applied. Also this error appears in google chrome console
image

What do you think? Is this a bug?

Here is my code, simplified.

#################### models.py ####################
class WaysToSaveBaseItem(PolymorphicModel):
    product_name = models.CharField(max_length=60)


class WaysToSaveProductLayoutA(WaysToSaveBaseItem):
    pass


class WaysToSaveProductLayoutB(WaysToSaveBaseItem):
    eyebrow_text = models.CharField(max_length=25)


class WaysToSaveCoupon(WaysToSaveBaseItem):
    red_promotion_text = models.CharField(max_length=10)


#################### admin.py ####################
class WaysToSaveProductLayoutAInline(StackedPolymorphicInline.Child):
    model = WaysToSaveProductLayoutA


class WaysToSaveProductLayoutBInline(StackedPolymorphicInline.Child):
    model = WaysToSaveProductLayoutB


class WaysToSaveCouponInline(StackedPolymorphicInline.Child):
    model = WaysToSaveCoupon


class WaysToSaveItemForLayoutInline(StackedPolymorphicInline):
    model = WaysToSaveBaseItem


class WaysToSaveItemForLayoutAInline(WaysToSaveItemForLayoutInline):
    child_inlines = (
        WaysToSaveProductLayoutAInline,
        WaysToSaveCouponInline,
    )


class WaysToSaveItemForLayoutBInline(WaysToSaveItemForLayoutInline):
    child_inlines = (
        WaysToSaveProductLayoutBInline,
        WaysToSaveCouponInline,
    )


@admin.register(WaysToSaveSection)
class WaysToSaveSectionAdmin(PolymorphicInlineSupportMixin, admin.ModelAdmin):
    inlines = (
        WaysToSaveItemForLayoutAInline,
    )
@marcosalcazar marcosalcazar changed the title JS inlines in admin StackedPolymorphicInline broken in admin, they are rendered but dynamic behavior not present. Sep 24, 2020
@marcosalcazar
Copy link
Author

Removing def get_min_num(self, request, obj=None, **kwargs): fixed the issue. Console errors are still there but they are not the source of this problem.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant