mirror of
https://github.com/SectorLabs/django-localized-fields.git
synced 2026-01-29 02:30:00 +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.