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
- Host: GitHub
- URL: https://github.com/beda-software/modeltranslation-grappelli
- Owner: beda-software
- Created: 2015-06-30T05:01:08.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2015-07-01T06:21:48.000Z (almost 11 years ago)
- Last Synced: 2024-02-24T06:20:59.725Z (over 2 years ago)
- Language: JavaScript
- Size: 108 KB
- Stars: 6
- Watchers: 14
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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
```