mirror of
https://github.com/SectorLabs/django-localized-fields.git
synced 2025-04-25 03:32:55 +03:00
LocalizedFieldsAdminMixin was inheriting from ModelAdmin. This means in a code like this ```python class FooInline(LocalizedFieldsAdminMixin, admin.TabularMixin): pass ``` `__init__` was being resolved to `ModelAdmin.__init__` which is clearly wrong.