mirror of
				https://github.com/SectorLabs/django-localized-fields.git
				synced 2025-10-31 02:48:56 +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.