An open API service indexing awesome lists of open source software.

https://github.com/beda-software/modeltranslation-grappelli

django-modeltranslation with grappelli support
https://github.com/beda-software/modeltranslation-grappelli

Last synced: about 1 year ago
JSON representation

django-modeltranslation with grappelli support

Awesome Lists containing this project

README

          

# modeltranslation-grappelli

This package allow usage modeltranslation packages with grappelli admin interface.

## Installation

### Requirments

Modeltranslation-grappelliDjango

>=3.01.8

==2.01.7

==1.01.4-1.6

### Using pip

```bash
pip install modeltranslation-grappelli
```

### Configure

Include to installed apps.

```python
INSTALLED_APPS = (
...
'modeltranslation_grappelli',
)
```

And inherit your admin class from this mixin.

```python
from modeltranslation_grappelli.admin.mixin import CustomMinTabbedTranslationAdmin

class YourModelAdmin(CustomMinTabbedTranslationAdmin):
pass
```